Created
August 3, 2020 20:49
-
-
Save jtarchie/42f24c83aaf7349748ce2b3dc50a9e4b to your computer and use it in GitHub Desktop.
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
#! some variables need to be configurable externally | |
#! we can specify them in a separate file or a separate | |
#! YAML document node | |
#@ load("@ytt:data", "data") | |
jobs: | |
#@ for/end iaas in data.values.iaases: | |
- name: #@ "create-" + iaas.name | |
- name: #@ "destroy-" + iaas.name |
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
#@data/values | |
--- | |
iaases: | |
- name: gcp | |
- name: aws |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment