Skip to content

Commit a3c109d

Browse files
author
misc
committed
added hostname to docker
1 parent d40c4f2 commit a3c109d

File tree

2 files changed

+13
-0
lines changed

2 files changed

+13
-0
lines changed

service/main.tf

+6
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,11 @@ variable "iam_role" {
113113
description = "IAM Role ARN to use"
114114
}
115115

116+
variable "hostname" {
117+
description = "hostname of the Docker-Container"
118+
default = ""
119+
}
120+
116121
variable "zone_id" {
117122
description = "The zone ID to create the record in"
118123
}
@@ -161,6 +166,7 @@ module "task" {
161166
env_vars = "${var.env_vars}"
162167
memory = "${var.memory}"
163168
cpu = "${var.cpu}"
169+
hostname = "${coalesce(var.hostname, var.name)}"
164170

165171
ports = <<EOF
166172
[

task/main.tf

+7
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,12 @@ variable "role" {
7272
default = ""
7373
}
7474

75+
76+
variable "hostname" {
77+
description = "hostname of the Docker-Container"
78+
default = ""
79+
}
80+
7581
/**
7682
* Resources.
7783
*/
@@ -96,6 +102,7 @@ resource "aws_ecs_task_definition" "main" {
96102
"image": "${var.image}:${var.image_version}",
97103
"memory": ${var.memory},
98104
"name": "${var.name}",
105+
"hostname": "${coalesce(var.hostname, var.name)}",
99106
"portMappings": ${var.ports},
100107
"entryPoint": ${var.entry_point},
101108
"mountPoints": [],

0 commit comments

Comments
 (0)