this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add global tags

+12 -5
+1 -1
infra/main.tf
··· 14 14 server_count = 1 15 15 agent_count = 3 16 16 ssh_public_key = tls_private_key.ssh.public_key_openssh 17 - subnet_id = module.network.subnet_id 17 + subnet_id = module.network.subnet_id 18 18 }
+4 -4
infra/modules/k3s-cluster/main.tf
··· 18 18 19 19 resource "oci_core_instance_pool" "agent_pool" { 20 20 #Required 21 - compartment_id = var.compartment_id 21 + compartment_id = var.compartment_id 22 22 instance_configuration_id = oci_core_instance_configuration.test_instance_configuration.id 23 23 placement_configurations { 24 - #Required 25 - availability_domain = "gHLA:US-SANJOSE-1-AD-1" 26 - primary_subnet_id = var.subnet_id 24 + #Required 25 + availability_domain = "gHLA:US-SANJOSE-1-AD-1" 26 + primary_subnet_id = var.subnet_id 27 27 28 28 } 29 29 size = var.agent_count
+7
infra/variables.tf
··· 1 + variable "global_tags" { 2 + description = "Tags to add to all resources" 3 + type = map(string) 4 + default = { 5 + project = "freecloud" 6 + } 7 + }