Skip to content

Instantly share code, notes, and snippets.

@Anthonyhawkins
Last active June 8, 2021 18:11
Show Gist options
  • Save Anthonyhawkins/d1570cf694e82d35f35724d6228f8797 to your computer and use it in GitHub Desktop.
Save Anthonyhawkins/d1570cf694e82d35f35724d6228f8797 to your computer and use it in GitHub Desktop.
"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