Skip to content

Commit

Permalink
removed unused variables
Browse files Browse the repository at this point in the history
  • Loading branch information
marycrawford committed Dec 11, 2024
1 parent 0bb950f commit 032b93f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 19 deletions.
16 changes: 0 additions & 16 deletions ops/terraform/modules/app_service/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -22,19 +22,3 @@ variable "app_settings" {
variable "health_path" {
default = "/"
}

variable "postgres_db_name" {
description = "The name of the PostgreSQL database"
type = string
}

variable "postgres_password" {
description = "The password for the PostgreSQL database"
type = string
sensitive = true # This ensures Terraform treats the password as sensitive
}

variable "postgres_user" {
description = "The username for the PostgreSQL database"
type = string
}
6 changes: 3 additions & 3 deletions ops/terraform/variables.tf
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
variable "client_id" {}
variable "name" {}
variable "postgres_db_name" {}
variable "postgres_password" {}
variable "postgres_server_id" {}
variable " postgres_user" {}
variable "object_id" {}
variable "tenant_id" {}

variable "sku_name" {
type = string
description = "The Azure Stock Keep Unit (SKU) version"
}

variable "subscription_id" {}

variable "resource_group_name" {
description = "value of the Azure resource group to deploy to"
}

0 comments on commit 032b93f

Please sign in to comment.