Skip to content

Commit 4da908c

Browse files
committed
fix: Fixed locals in examples
1 parent bd6f93b commit 4da908c

File tree

3 files changed

+0
-6
lines changed

3 files changed

+0
-6
lines changed

_example/basic/example.tf

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ provider "aws" {
55
locals {
66
name = "app"
77
environment = "test"
8-
label_order = ["name", "environment"]
98
}
109

1110
##-----------------------------------------------------------------------------
@@ -16,7 +15,6 @@ module "vpc" {
1615
version = "2.0.0"
1716
name = local.name
1817
environment = local.environment
19-
label_order = local.label_order
2018
cidr_block = "10.0.0.0/16"
2119
}
2220

_example/complete/example.tf

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ provider "aws" {
55
locals {
66
name = "app"
77
environment = "test"
8-
label_order = ["name", "environment"]
98
}
109

1110
##-----------------------------------------------------------------------------
@@ -16,7 +15,6 @@ module "vpc" {
1615
version = "2.0.0"
1716
name = local.name
1817
environment = local.environment
19-
label_order = local.label_order
2018
cidr_block = "10.0.0.0/16"
2119
}
2220

_example/prefix_list/example.tf

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ provider "aws" {
55
locals {
66
name = "app"
77
environment = "test"
8-
label_order = ["name", "environment"]
98
}
109

1110
##-----------------------------------------------------------------------------
@@ -16,7 +15,6 @@ module "vpc" {
1615
version = "2.0.0"
1716
name = local.name
1817
environment = local.environment
19-
label_order = local.label_order
2018
cidr_block = "10.0.0.0/16"
2119
}
2220

0 commit comments

Comments
 (0)