Skip to content

Commit cd5c6b0

Browse files
Fix syntax error in example (#107)
* Update README.md Fix syntax error that causes plan to fail * Auto Format Co-authored-by: cloudpossebot <11232728+cloudpossebot@users.noreply.github.com>
1 parent d42f633 commit cd5c6b0

File tree

4 files changed

+3
-4
lines changed

4 files changed

+3
-4
lines changed

.github/auto-release.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ version-resolver:
1717
- 'bugfix'
1818
- 'bug'
1919
- 'hotfix'
20-
- 'no-release'
2120
default: 'minor'
2221

2322
categories:

.github/renovate.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
":preserveSemverRanges"
55
],
66
"labels": ["auto-update"],
7+
"dependencyDashboardAutoclose": true,
78
"enabledManagers": ["terraform"],
89
"terraform": {
910
"ignorePaths": ["**/context.tf", "examples/**"]
1011
}
1112
}
12-

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ module "dynamic_subnets" {
126126
name = "app"
127127
availability_zones = ["us-west-2a","us-west-2b","us-west-2c"]
128128
vpc_id = module.vpc.vpc_id
129-
igw_id = module.vpc.igw_id
129+
igw_id = [module.vpc.igw_id]
130130
cidr_block = "10.0.0.0/16"
131131
}
132132
```

README.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ examples: |-
105105
name = "app"
106106
availability_zones = ["us-west-2a","us-west-2b","us-west-2c"]
107107
vpc_id = module.vpc.vpc_id
108-
igw_id = module.vpc.igw_id
108+
igw_id = [module.vpc.igw_id]
109109
cidr_block = "10.0.0.0/16"
110110
}
111111
```

0 commit comments

Comments
 (0)