github.com/koding/terraform@v0.6.4-0.20170608090606-5d7e0339779d/website/source/docs/providers/ovh/r/publiccloud_user.html.markdown (about) 1 --- 2 layout: "ovh" 3 page_title: "OVH: publiccloud_user" 4 sidebar_current: "docs-ovh-resource-publiccloud-user" 5 description: |- 6 Creates a user in a public cloud project. 7 --- 8 9 # ovh_publiccloud\_user 10 11 Creates a user in a public cloud project. 12 13 ## Example Usage 14 15 ``` 16 resource "ovh_publiccloud_user" "user1" { 17 project_id = "67890" 18 } 19 ``` 20 21 ## Argument Reference 22 23 The following arguments are supported: 24 25 * `project_id` - (Required) The id of the public cloud project. If omitted, 26 the `OVH_PROJECT_ID` environment variable is used. 27 28 * `description` - A description associated with the user. 29 30 ## Attributes Reference 31 32 The following attributes are exported: 33 34 * `project_id` - See Argument Reference above. 35 * `description` - See Argument Reference above. 36 * `username` - the username generated for the user. This username can be used with 37 the Openstack API. 38 * `password` - (Sensitive) the password generated for the user. The password can 39 be used with the Openstack API. This attribute is sensitive and will only be 40 retrieve once during creation. 41 * `status` - the status of the user. should be normally set to 'ok'. 42 * `creation_date` - the date the user was created. 43 * `openstack_rc` - a convenient map representing an openstack_rc file. 44 Note: no password nor sensitive token is set in this map.