-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
preserve comments when updating config
- Loading branch information
1 parent
3bc5dee
commit 0b3a2ac
Showing
4 changed files
with
43 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,29 @@ | ||
# ******************* DO NOT EDIT THIS NOTICE ***************** | ||
# This legal notice is added to every supported source code | ||
# file at every commit. See the README for more info! | ||
# file at every commit. See the README for more info! | ||
# ************************************************************* | ||
accounts: | ||
dev: | ||
id: "339712993254" | ||
email: [email protected] | ||
name: Development Account | ||
organizational_unit: dev | ||
id: '339712993254' | ||
master: | ||
id: "891377150698" | ||
id: '891377150698' | ||
email: [email protected] | ||
name: Master Account | ||
prod: | ||
id: "381491905215" | ||
id: '381491905215' | ||
email: [email protected] | ||
name: Production Account | ||
organizational_unit: prod | ||
test: | ||
id: "381491918621" | ||
id: '381491918621' | ||
email: [email protected] | ||
name: Testing Account | ||
organizational_unit: test | ||
shared_services: | ||
id: "975050301644" | ||
id: '975050301644' | ||
email: [email protected] | ||
name: Shared Services Account | ||
organizational_unit: infrastructure | ||
|
@@ -89,14 +89,16 @@ organizational_units: | |
name: Workloads OU | ||
terraform: | ||
aws_profile: KARMA-INIT | ||
aws_version: ">= 5.56.1" | ||
aws_version: '>= 5.56.1' | ||
paths: test | ||
roles: | ||
admin: TerraformAdmin | ||
deployment: TerraformDeployment | ||
reader: TerraformReader | ||
state_account: shared_services | ||
state_bucket: "{{#if organization.namespace}}{{organization.namespace}}-{{/if}}terraform-state" | ||
state_bucket: '{{#if | ||
organization.namespace}}{{organization.namespace}}-{{/if}}terraform-state' | ||
state_key: terraform.tfstate | ||
state_lock_table: terraform-state-lock | ||
terraform_version: ">= 1.9.0" | ||
terraform_version: '>= 1.9.0' | ||
|