Skip to content

Commit 9ace403

Browse files
authored
Update main.tf
Removing not needed ${} for the users
1 parent c0715e4 commit 9ace403

File tree

1 file changed

+2
-2
lines changed
  • released/discovery_center/mission_4441/minimal_setup_enterprise/step2

1 file changed

+2
-2
lines changed

released/discovery_center/mission_4441/minimal_setup_enterprise/step2/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ locals {
2525

2626
# Define Org User role
2727
resource "cloudfoundry_org_role" "organization_user" {
28-
for_each = toset("${local.cf_org_admins}")
28+
for_each = toset(local.cf_org_admins)
2929
username = each.value
3030
type = "organization_user"
3131
org = var.cf_org_id
@@ -34,7 +34,7 @@ resource "cloudfoundry_org_role" "organization_user" {
3434

3535
# Define Org Manager role
3636
resource "cloudfoundry_org_role" "organization_manager" {
37-
for_each = toset("${local.cf_org_admins}")
37+
for_each = toset(local.cf_org_admins)
3838
username = each.value
3939
type = "organization_manager"
4040
org = var.cf_org_id

0 commit comments

Comments
 (0)