From 5fdafa91bc7ea949c1952e6e102e0c7bf87e7210 Mon Sep 17 00:00:00 2001 From: marycrawford Date: Wed, 11 Dec 2024 15:06:51 -0800 Subject: [PATCH] updates and remove postgres_server_id in the base variables.tf file --- ops/terraform/main.tf | 2 -- ops/terraform/modules/network/variables.tf | 2 -- ops/terraform/variables.tf | 2 +- 3 files changed, 1 insertion(+), 5 deletions(-) diff --git a/ops/terraform/main.tf b/ops/terraform/main.tf index 7fe5791d..f3675259 100644 --- a/ops/terraform/main.tf +++ b/ops/terraform/main.tf @@ -23,8 +23,6 @@ module "networking" { # The DNS zone and DNS link are managed inside the networking module. postgres_server_id = module.database.postgres_server_id - - } module "securitygroup" { diff --git a/ops/terraform/modules/network/variables.tf b/ops/terraform/modules/network/variables.tf index f8a8bce0..7a8a63e3 100644 --- a/ops/terraform/modules/network/variables.tf +++ b/ops/terraform/modules/network/variables.tf @@ -13,6 +13,4 @@ variable "location" { } variable "postgres_server_id" { - description = "The ID of the PostgreSQL server" - type = string } diff --git a/ops/terraform/variables.tf b/ops/terraform/variables.tf index c245a6a1..6ed1655c 100644 --- a/ops/terraform/variables.tf +++ b/ops/terraform/variables.tf @@ -1,6 +1,6 @@ variable "client_id" {} variable "name" {} -variable "postgres_server_id" {} +# variable "postgres_server_id" {} variable "object_id" {} variable "tenant_id" {}