Skip to content

Commit

Permalink
fix: Fixed locals in examples
Browse files Browse the repository at this point in the history
  • Loading branch information
13archit committed Aug 3, 2023
1 parent bd6f93b commit 4da908c
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 6 deletions.
2 changes: 0 additions & 2 deletions _example/basic/example.tf
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ provider "aws" {
locals {
name = "app"
environment = "test"
label_order = ["name", "environment"]
}

##-----------------------------------------------------------------------------
Expand All @@ -16,7 +15,6 @@ module "vpc" {
version = "2.0.0"
name = local.name
environment = local.environment
label_order = local.label_order
cidr_block = "10.0.0.0/16"
}

Expand Down
2 changes: 0 additions & 2 deletions _example/complete/example.tf
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ provider "aws" {
locals {
name = "app"
environment = "test"
label_order = ["name", "environment"]
}

##-----------------------------------------------------------------------------
Expand All @@ -16,7 +15,6 @@ module "vpc" {
version = "2.0.0"
name = local.name
environment = local.environment
label_order = local.label_order
cidr_block = "10.0.0.0/16"
}

Expand Down
2 changes: 0 additions & 2 deletions _example/prefix_list/example.tf
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ provider "aws" {
locals {
name = "app"
environment = "test"
label_order = ["name", "environment"]
}

##-----------------------------------------------------------------------------
Expand All @@ -16,7 +15,6 @@ module "vpc" {
version = "2.0.0"
name = local.name
environment = local.environment
label_order = local.label_order
cidr_block = "10.0.0.0/16"
}

Expand Down

0 comments on commit 4da908c

Please sign in to comment.