Skip to content

Commit adb4861

Browse files
committed
upgrade to 0.14
1 parent b094a21 commit adb4861

File tree

9 files changed

+76
-76
lines changed

9 files changed

+76
-76
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
export GENIE_PATH ?= $(shell 'pwd')/../../../genie
22

3-
include $(GENIE_PATH)/Makefile
3+
include $(GENIE_PATH)/Makefile

_example/basic/example.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,4 +57,4 @@ EOF
5757
# Api Gateway Stage
5858
stage_enabled = true
5959
stage_names = ["qa"]
60-
}
60+
}

_example/basic/outputs.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
output "arn" {
44
value = module.api-gateway.*.execution_arn
55
description = "The Execution ARN of the REST API."
6-
}
6+
}

_example/complete/example.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,4 +83,4 @@ EOF
8383
# Api Gateway Api Key
8484
key_count = 2
8585
key_names = ["test", "test1"]
86-
}
86+
}

_example/complete/outputs.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
output "arn" {
44
value = module.api-gateway.*.execution_arn
55
description = "The Execution ARN of the REST API."
6-
}
6+
}

_test/basic/api_gateway_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,4 @@ func Test(t *testing.T) {
3030

3131
// Verify we're getting back the outputs we expect
3232
assert.Contains(t, Arn, "arn:aws:execute-api")
33-
}
33+
}

_test/complete/api_gateway_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,4 @@ func Test(t *testing.T) {
3030

3131
// Verify we're getting back the outputs we expect
3232
assert.Contains(t, Arn, "arn:aws:execute-api")
33-
}
33+
}

outputs.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ output "execution_arn" {
1313
output "tags" {
1414
value = module.labels.tags
1515
description = "A mapping of tags to assign to the resource."
16-
}
16+
}

0 commit comments

Comments
 (0)