-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: adding child platform management groups (#67)
* feat: adding child platform management groups * terraform fmt * Skip alz module version check in e2e tests * Add missing flag * Fix GitHub deprecated task versions --------- Co-authored-by: sdeguchi <[email protected]> Co-authored-by: Jared Holgate <[email protected]>
- Loading branch information
1 parent
c4fe147
commit b07866a
Showing
7 changed files
with
177 additions
and
243 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
Large diffs are not rendered by default.
Oops, something went wrong.
13 changes: 13 additions & 0 deletions
13
modules/template_architecture_definition/templates/architecture_definition.json.tftpl
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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{ | ||
"name": "${architecture_definition_name}", | ||
"management_groups": [ | ||
%{ for management_group in management_groups }{ | ||
"archetypes": ${management_group.archetypes}, | ||
"display_name": ${management_group.display_name}, | ||
"id": ${management_group.id}, | ||
"exists": ${management_group.exists}, | ||
"parent_id": ${management_group.parent_id} | ||
}%{ if management_group != management_groups[length(management_groups) - 1] && length(management_groups) != 0}, | ||
%{ endif }%{ endfor } | ||
] | ||
} |
89 changes: 0 additions & 89 deletions
89
...les/template_architecture_definition/templates/fsi.alz_architecture_definition.json.tftpl
This file was deleted.
Oops, something went wrong.
89 changes: 0 additions & 89 deletions
89
...les/template_architecture_definition/templates/slz.alz_architecture_definition.json.tftpl
This file was deleted.
Oops, something went wrong.