Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[DEV-2049] Fix ac env vars in strapi container #1274

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion apps/infrastructure/src/modules/cms/ecs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ resource "aws_ecs_task_definition" "cms_task_def" {
google_oauth_client_id = module.secret_cms_google_oauth_client_id.ssm_parameter_arn
google_oauth_client_secret = module.secret_cms_google_oauth_client_secret.ssm_parameter_arn
google_oauth_redirect_uri = format("https://cms.%s/strapi-plugin-sso/google/callback", var.dns_domain_name)
ac_integration_is_enabled = var.ac_integration_is_enabled
ac_integration_is_enabled = var.ac_integration_is_enabled ? "True" : "False"
ac_base_url = var.ac_integration_is_enabled ? var.ac_base_url_param : module.secret_cms_transfer_token_salt.ssm_parameter_arn
ac_api_key = var.ac_integration_is_enabled ? var.ac_api_key_param : module.secret_cms_transfer_token_salt.ssm_parameter_arn
ac_sender_url = "https://${var.dns_domain_name}"
Expand Down
Loading