Skip to content

Commit 014a42f

Browse files
Remove Redis AWS IAM passwordless variables from PostgreSQL-only branch
1 parent 86eec09 commit 014a42f

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

modules/runtime_container_engine_config/variables.tf

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -148,6 +148,18 @@ variable "explorer_database_user" {
148148
description = "PostgreSQL user. Required when TFE_OPERATIONAL_MODE is external or active-active."
149149
}
150150

151+
variable "explorer_database_passwordless_azure_use_msi" {
152+
default = false
153+
type = bool
154+
description = "Whether or not to use Azure Managed Service Identity (MSI) to connect to the explorer PostgreSQL database. Defaults to false if no value is given."
155+
}
156+
157+
variable "explorer_database_passwordless_azure_client_id" {
158+
default = ""
159+
type = string
160+
description = "Azure Managed Service Identity (MSI) Client ID for explorer database. If not set, System Assigned Managed Identity will be used."
161+
}
162+
151163
variable "disk_path" {
152164
default = null
153165
description = "The pathname of the directory in which Terraform Enterprise will store data in Mounted Disk mode. Required when var.operational_mode is 'disk'."
@@ -357,18 +369,6 @@ variable "redis_sentinel_password" {
357369
default = null
358370
}
359371

360-
variable "redis_passwordless_azure_use_msi" {
361-
default = false
362-
type = bool
363-
description = "Whether or not to use Azure Managed Service Identity (MSI) to connect to the Redis server. Defaults to false if no value is given."
364-
}
365-
366-
variable "redis_passwordless_azure_client_id" {
367-
default = ""
368-
type = string
369-
description = "Azure Managed Service Identity (MSI) Client ID to be used for redis authentication. If not set, System Assigned Managed Identity will be used."
370-
}
371-
372372
variable "run_pipeline_image" {
373373
type = string
374374
description = "Container image used to execute Terraform runs. Leave blank to use the default image that comes with Terraform Enterprise. Defaults to \"\" if no value is given."

0 commit comments

Comments
 (0)