Last active
June 8, 2021 18:11
-
-
Save Anthonyhawkins/d1570cf694e82d35f35724d6228f8797 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
"jobs": [ | |
{ | |
"name": "create-orgs", | |
"plan": [ | |
Resource.get("config-repo"), | |
Resource.get("time-trigger"), | |
Task.cf_mgmt("create-orgs") | |
] | |
}, | |
{ | |
"name": "shared-domains", | |
"plan": [ | |
Resource.get("config-repo"), | |
Resource.get("time-trigger"), | |
Task.cf_mgmt("shared-domains") | |
] | |
}, | |
{ | |
"name": "create-security-groups", | |
"plan": [ | |
Resource.get("config-repo"), | |
Resource.get("time-trigger"), | |
Task.cf_mgmt("create-security-groups") | |
] | |
}, | |
{ | |
"name": "assign-default-security-groups", | |
"plan": [ | |
Resource.get("config-repo", passed=["create-security-groups"]), | |
Resource.get("time-trigger"), | |
Task.cf_mgmt("assign-default-security-groups") | |
] | |
}, | |
... 16 more jobs ... | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment