Skip to content

Commit f521eb2

Browse files
committed
Replacing comments
1 parent 007675a commit f521eb2

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

outputs.tf

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# ---------------------------------------------------------------------------------------------------------------------
1+
#------------------------------------------------------------------------------
22
# AWS ECS Task Execution Role
3-
# ---------------------------------------------------------------------------------------------------------------------
3+
#------------------------------------------------------------------------------
44
output "aws_iam_role_ecs_task_execution_role_arn" {
55
description = "The Amazon Resource Name (ARN) specifying the role."
66
value = aws_iam_role.ecs_task_execution_role.arn
@@ -26,9 +26,9 @@ output "aws_iam_role_ecs_task_execution_role_unique_id" {
2626
value = aws_iam_role.ecs_task_execution_role.unique_id
2727
}
2828

29-
# ---------------------------------------------------------------------------------------------------------------------
29+
#------------------------------------------------------------------------------
3030
# ECS Task Definition
31-
# ---------------------------------------------------------------------------------------------------------------------
31+
#------------------------------------------------------------------------------
3232
output "aws_ecs_task_definition_td_arn" {
3333
description = "Full ARN of the Task Definition (including both family and revision)."
3434
value = aws_ecs_task_definition.td.arn

variables.tf

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
# ---------------------------------------------------------------------------------------------------------------------
1+
#------------------------------------------------------------------------------
22
# Misc
3-
# ---------------------------------------------------------------------------------------------------------------------
3+
#------------------------------------------------------------------------------
44
variable "name_preffix" {
55
description = "Name preffix for resources on AWS"
66
}
77

8-
# ---------------------------------------------------------------------------------------------------------------------
8+
#------------------------------------------------------------------------------
99
# AWS ECS Container Definition Variables
10-
# ---------------------------------------------------------------------------------------------------------------------
10+
#------------------------------------------------------------------------------
1111
variable "container_image" {
1212
description = "The image used to start the container."
1313
}
@@ -246,9 +246,9 @@ variable "working_directory" {
246246
default = null
247247
}
248248

249-
# ---------------------------------------------------------------------------------------------------------------------
249+
#------------------------------------------------------------------------------
250250
# AWS ECS Task Definition Variables
251-
# ---------------------------------------------------------------------------------------------------------------------
251+
#------------------------------------------------------------------------------
252252
variable "placement_constraints" {
253253
description = "(Optional) A set of placement constraints rules that are taken into consideration during task placement. Maximum number of placement_constraints is 10. This is a list of maps, where each map should contain \"type\" and \"expression\""
254254
type = list

0 commit comments

Comments
 (0)