alicloud_ram_user_policy_attachment
更新時間:
Provides a RAM User Policy attachment resource.
-> NOTE: Available since v1.0.0.
Example Usage
# Create a RAM User Policy attachment.
resource "alicloud_ram_user" "user" {
name = "userName"
display_name = "user_display_name"
mobile = "86-18688888888"
email = "hello.uuu@aaa.com"
comments = "yoyoyo"
}
resource "random_integer" "default" {
min = 10000
max = 99999
}
resource "alicloud_ram_policy" "policy" {
policy_name = "tf-example-${random_integer.default.result}"
policy_document = <<EOF
{
"Statement": [
{
"Action": [
"oss:ListObjects",
"oss:GetObject"
],
"Effect": "Allow",
"Resource": [
"acs:oss:*:*:mybucket",
"acs:oss:*:*:mybucket/*"
]
}
],
"Version": "1"
}
EOF
description = "this is a policy test"
}
resource "alicloud_ram_user_policy_attachment" "attach" {
policy_name = alicloud_ram_policy.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, ForceNew) 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, ForceNew) 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, ForceNew) Type of the RAM policy. It must beCustom
orSystem
.
Attributes Reference
The following attributes are exported:
id
- The attachment ID. Composed of policy name, policy type and user name with formatuser:<policy_name>:<policy_type>:<user_name>
.
Import
RAM User Policy attachment can be imported using the id, e.g.
$ terraform import alicloud_ram_user_policy_attachment.example user:my-policy:Custom:my-user
文檔內容是否對您有幫助?