From d12668696d6279b8f03f9056ff0d173d7e69b793 Mon Sep 17 00:00:00 2001 From: Mike Holloway Date: Mon, 6 Jan 2025 23:51:39 -0500 Subject: [PATCH] Adding observability instance --- main.tf | 10 ++++++++++ 1 file changed, 10 insertions(+) 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 +}