Skip to content

Commit 0e51754

Browse files
Restore Explorer database passwordless Azure variables
- Add back explorer_database_passwordless_azure_use_msi variable - Add back explorer_database_passwordless_azure_client_id variable - These were incorrectly removed as they are for Explorer database, not primary database - Our scope is limited to primary database changes only Reverts scope creep - Explorer database variables should remain untouched.
1 parent 24a895a commit 0e51754

1 file changed

Lines changed: 12 additions & 0 deletions

File tree

modules/runtime_container_engine_config/variables.tf

Lines changed: 12 additions & 0 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'."

0 commit comments

Comments
 (0)