diff --git a/main.tf b/main.tf index 12d61cb..4070395 100644 --- a/main.tf +++ b/main.tf @@ -152,7 +152,7 @@ module container_definition { ENCRYPTED_SAAS_HTTP_METHODS = join(",", var.encrypted_saas_http_methods) # Global Settings - ORGANIZATION_URI = var.subdomain + ORGANIZATION_URI = var.organization_uri DATA_SUBJECT_AUTHENTICATION_METHODS = join(",", var.data_subject_auth_methods) EMPLOYEE_AUTHENTICATION_METHODS = join(",", var.employee_auth_methods) diff --git a/variables.tf b/variables.tf index 243b735..9f20d90 100644 --- a/variables.tf +++ b/variables.tf @@ -8,6 +8,10 @@ variable project_id { EOF } +variable organization_uri { + description = "The unique URI for you organization from Transcend." +} + variable vpc_id { description = "The ID of the VPC to put this application into" }