On this page
alicloud_ram_user_policy_attachment
Provides a RAM User Policy attachment resource.
Example Usage
# Create a RAM User Policy attachment.
resource "alicloud_ram_user" "user" {
name = "user_test"
display_name = "user_display_name"
mobile = "86-18688888888"
email = "hello.uuu@aaa.com"
comments = "yoyoyo"
force = true
}
resource "alicloud_ram_policy" "policy" {
name = "test_policy"
statement = [
{
effect = "Allow"
action = [
"oss:ListObjects",
"oss:GetObject"]
resource = [
"acs:oss:*:*:mybucket",
"acs:oss:*:*:mybucket/*"]
}]
description = "this is a policy test"
force = true
}
resource "alicloud_ram_user_policy_attachment" "attach" {
policy_name = "${alicloud_ram_policy.policy.name}"
policy_type = "${alicloud_ram_policy.policy.type}"
user_name = "${alicloud_ram_user.user.name}"
}
Argument Reference
The following arguments are supported:
user_name
- (Required, Forces new resource) Name of the RAM user. This name can have a string of 1 to 64 characters, must contain only alphanumeric characters or hyphens, such as "-",".","_", and must not begin with a hyphen.policy_name
- (Required, Forces new resource) Name of the RAM policy. This name can have a string of 1 to 128 characters, must contain only alphanumeric characters or hyphen "-", and must not begin with a hyphen.policy_type
- (Required, Forces new resource) Type of the RAM policy. It must beCustom
orSystem
.
Attributes Reference
The following attributes are exported:
id
- The attachment ID.user_name
- The user name.policy_name
- The policy name.policy_type
- The policy type.
© 2018 HashiCorp
Licensed under the MPL 2.0 License.
https://www.terraform.io/docs/providers/alicloud/r/ram_user_policy_attachment.html