parent
3769b43527
commit
82c1d1e644
2 changed files with 24 additions and 18 deletions
|
|
@ -1,4 +1,7 @@
|
|||
# How to Provisioning Cloud Foundry using Terrform
|
||||
---
|
||||
page_title: "How to provision Cloud Foundry using Terraform"
|
||||
---
|
||||
# How to provision Cloud Foundry using Terraform
|
||||
|
||||
## Objective
|
||||
|
||||
|
|
@ -115,7 +118,7 @@ resource "cloudfoundry_space_role" "space_developer" {
|
|||
for_each = toset(local.spaces)
|
||||
username = var.admin_email
|
||||
type = "space_developer"
|
||||
depends_on = [ cloudfoundry_org_role.org_user ]
|
||||
depends_on = [cloudfoundry_org_role.org_user]
|
||||
space = cloudfoundry_space.spaces[each.key].id
|
||||
}
|
||||
```
|
||||
|
|
|
|||
|
|
@ -1,4 +1,7 @@
|
|||
# How to Provisioning Cloud Foundry using Terrform
|
||||
---
|
||||
page_title: "How to provision Cloud Foundry using Terraform"
|
||||
---
|
||||
# How to provision Cloud Foundry using Terraform
|
||||
|
||||
## Objective
|
||||
|
||||
|
|
@ -115,7 +118,7 @@ resource "cloudfoundry_space_role" "space_developer" {
|
|||
for_each = toset(local.spaces)
|
||||
username = var.admin_email
|
||||
type = "space_developer"
|
||||
depends_on = [ cloudfoundry_org_role.org_user ]
|
||||
depends_on = [cloudfoundry_org_role.org_user]
|
||||
space = cloudfoundry_space.spaces[each.key].id
|
||||
}
|
||||
```
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue