diff --git a/main.tf b/main.tf index ed5ae81..e0f5b01 100644 --- a/main.tf +++ b/main.tf @@ -21,3 +21,13 @@ module "observability" { vpc_ipv4_addr = "10.0.10.3" instance_token = var.token } + +module "secret-mgmt" { + source = "./modules/instance" + label = "secret-mgmt" + root_pass = var.root_pass + vpc_subnet_id = module.main_vpc_subnet.vpc_subnet_id + vpc_ipv4_addr = "10.0.10.4" + type = "g6-nanode-1" + instance_token = var.token +}