File tree 2 files changed +13
-0
lines changed
2 files changed +13
-0
lines changed Original file line number Diff line number Diff line change @@ -113,6 +113,11 @@ variable "iam_role" {
113
113
description = " IAM Role ARN to use"
114
114
}
115
115
116
+ variable "hostname" {
117
+ description = " hostname of the Docker-Container"
118
+ default = " "
119
+ }
120
+
116
121
variable "zone_id" {
117
122
description = " The zone ID to create the record in"
118
123
}
@@ -161,6 +166,7 @@ module "task" {
161
166
env_vars = " ${ var . env_vars } "
162
167
memory = " ${ var . memory } "
163
168
cpu = " ${ var . cpu } "
169
+ hostname = " ${ coalesce (var. hostname , var. name )} "
164
170
165
171
ports = << EOF
166
172
[
Original file line number Diff line number Diff line change @@ -72,6 +72,12 @@ variable "role" {
72
72
default = " "
73
73
}
74
74
75
+
76
+ variable "hostname" {
77
+ description = " hostname of the Docker-Container"
78
+ default = " "
79
+ }
80
+
75
81
/* *
76
82
* Resources.
77
83
*/
@@ -96,6 +102,7 @@ resource "aws_ecs_task_definition" "main" {
96
102
"image": "${ var . image } :${ var . image_version } ",
97
103
"memory": ${ var . memory } ,
98
104
"name": "${ var . name } ",
105
+ "hostname": "${ coalesce (var. hostname , var. name )} ",
99
106
"portMappings": ${ var . ports } ,
100
107
"entryPoint": ${ var . entry_point } ,
101
108
"mountPoints": [],
You can’t perform that action at this time.
0 commit comments