Skip to content

Latest commit

 

History

History
19 lines (15 loc) · 1.22 KB

File metadata and controls

19 lines (15 loc) · 1.22 KB

cloudfoundry_user

Provides a resource for creating users in the origin store and registering them in Cloud Foundry

SAP Cloudfoundry Provider Community Cloudfoundry Provider
resource "cloudfoundry_user" "my_user" {
username = "test"
email = "[email protected]"
password = "test123"
given_name = "test"
family_name = "test"
annotations = { "purpose" : "testing", hi : "hello" }
}
resource "cloudfoundry_user" "my_user" {
name = "test"
email = "[email protected]"
password = "test123"
given_name = "test"
family_name = "test"
}

Differences

Note

🔵 Required 🟢 Optional 🟠 Computed 🔴 Not present

Attribute name SAP Cloudfoundry Provider(new) Community Provider(old) Description
name 🔴 🔵 name has been changed to username to maintain conformity with UAA API.
username 🔵 🔴 -
groups 🟠 🟢 Assigning groups to the user functionality can be achieved from the cloudfoundry_user_groups resource
labels 🟢 🔴 -
annotations 🟢 🔴 -