github.com/danp/terraform@v0.9.5-0.20170426144147-39d740081351/website/source/docs/providers/aws/r/opsworks_user_profile.html.markdown (about) 1 --- 2 layout: "aws" 3 page_title: "AWS: aws_opsworks_user_profile" 4 sidebar_current: "docs-aws-resource-opsworks-user-profile" 5 description: |- 6 Provides an OpsWorks User Profile resource. 7 --- 8 9 # aws\_opsworks\_user\_profile 10 11 Provides an OpsWorks User Profile resource. 12 13 ## Example Usage 14 15 ```hcl 16 resource "aws_opsworks_user_profile" "my_profile" { 17 user_arn = "${aws_iam_user.user.arn}" 18 ssh_username = "my_user" 19 } 20 ``` 21 22 ## Argument Reference 23 24 The following arguments are supported: 25 26 * `user_arn` - (Required) The user's IAM ARN 27 * `allow_self_management` - (Optional) Whether users can specify their own SSH public key through the My Settings page 28 * `ssh_username` - (Required) The ssh username, with witch this user wants to log in 29 * `ssh_public_key` - (Optional) The users public key 30 31 ## Attributes Reference 32 33 The following attributes are exported: 34 35 * `id` - Same value as `user_arn`