We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c0715e4 commit 9ace403Copy full SHA for 9ace403
released/discovery_center/mission_4441/minimal_setup_enterprise/step2/main.tf
@@ -25,7 +25,7 @@ locals {
25
26
# Define Org User role
27
resource "cloudfoundry_org_role" "organization_user" {
28
- for_each = toset("${local.cf_org_admins}")
+ for_each = toset(local.cf_org_admins)
29
username = each.value
30
type = "organization_user"
31
org = var.cf_org_id
@@ -34,7 +34,7 @@ resource "cloudfoundry_org_role" "organization_user" {
34
35
# Define Org Manager role
36
resource "cloudfoundry_org_role" "organization_manager" {
37
38
39
type = "organization_manager"
40
0 commit comments