alicloud_ram_user_policy_attachment

更新时间:

Provides a RAM User Policy Attachment resource.

For information about RAM User Policy Attachment and how to use it, see What is User Policy Attachment.

-> NOTE: Available since v1.0.0.

Example Usage

Basic 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:

  • policy_name - (Required, ForceNew) The name of the policy.
  • policy_type - (Required, ForceNew) Permission policy type.
    • Custom: Custom policy.
    • System: System policy.
  • user_name - (Required, ForceNew) The name of the RAM user.

Attributes Reference

The following attributes are exported:

  • id - The ID of the resource supplied above. The value is formulated as user:<policy_name>:<policy_type>:<user_name>.

Timeouts

-> NOTE: Available since v1.246.0.

The timeouts block allows you to specify timeouts for certain actions:

  • create - (Defaults to 5 mins) Used when create the User Policy Attachment.
  • delete - (Defaults to 5 mins) Used when delete the User Policy Attachment.

Import

RAM User Policy Attachment can be imported using the id, e.g.

$ terraform import alicloud_ram_user_policy_attachment.example user:<policy_name>:<policy_type>:<user_name>