Skip to content

Commit caf738c

Browse files
authored
context.tf updated to v0.24.1, minimum required Terraform version bumped to 0.13.0 when needed, readme updated (#59)
1 parent fa6c487 commit caf738c

File tree

3 files changed

+5
-49
lines changed

3 files changed

+5
-49
lines changed

.github/CODEOWNERS

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,10 @@
1515

1616
# Cloud Posse must review any changes to standard context definition,
1717
# but some changes can be rubber-stamped.
18-
**/context.tf @cloudposse/engineering @cloudposse/approvers
19-
README.md @cloudposse/engineering @cloudposse/contributors @cloudposse/approvers
20-
docs/*.md @cloudposse/engineering @cloudposse/contributors @cloudposse/approvers
18+
**/*.tf @cloudposse/engineering @cloudposse/approvers
19+
README.yaml @cloudposse/engineering @cloudposse/approvers
20+
README.md @cloudposse/engineering @cloudposse/contributors @cloudposse/approvers
21+
docs/*.md @cloudposse/engineering @cloudposse/contributors @cloudposse/approvers
2122

2223
# Cloud Posse Admins must review all changes to CODEOWNERS or the mergify configuration
2324
.github/mergify.yml @cloudposse/admins

.github/workflows/auto-readme.yml

Lines changed: 0 additions & 41 deletions
This file was deleted.

main.tf

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -43,11 +43,7 @@ module "label" {
4343
source = "cloudposse/label/null"
4444
version = "0.24.1"
4545

46-
# Using attributes = ["workers"] would put "workers" before any user-specified attributes.
47-
# While that might be preferable (adding an attribute "blue" would create
48-
# ...name-workers-blue instead of ...name-blue-workers), historically we forced "workers"
49-
# to the end of the attribute list, so we do it again here to maintain compatibility.
50-
attributes = compact(concat(module.this.attributes, ["workers"]))
46+
attributes = ["workers"]
5147

5248
context = module.this.context
5349
}

0 commit comments

Comments
 (0)