We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f4392f1 commit 51272a0Copy full SHA for 51272a0
modules/060-simplesamlphp/main.tf
@@ -98,7 +98,6 @@ locals {
98
mysql_password = var.mysql_pass
99
mysql_user = var.mysql_user
100
parameter_store_path = local.parameter_store_path
101
- port = var.enable_tls ? "443" : "80"
102
profile_url = var.profile_url
103
recaptcha_key = var.recaptcha_key
104
recaptcha_secret = var.recaptcha_secret
modules/060-simplesamlphp/task-definition.json.tftpl
@@ -8,8 +8,11 @@
8
"dnsSearchDomains": null,
9
"portMappings": [
10
{
11
- "hostPort": 0,
12
- "containerPort": ${port},
+ "containerPort": 80,
+ "protocol": "tcp"
13
+ },
14
+ {
15
+ "containerPort": 443,
16
"protocol": "tcp"
17
}
18
],
0 commit comments