Skip to content

Commit

Permalink
Merge pull request #8 from transcend-io/dmattia/fix_zone_id
Browse files Browse the repository at this point in the history
Added organization uri var
  • Loading branch information
dmattia authored Feb 21, 2020
2 parents a392116 + c8d14dd commit 53fdf91
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down
4 changes: 4 additions & 0 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
Expand Down

0 comments on commit 53fdf91

Please sign in to comment.