» alicloud_ram_role_policy_attachment
Provides a RAM Role attachment resource.
» Example Usage
# Create a RAM Role Policy attachment.
resource "alicloud_ram_role" "role" {
name = "roleName"
services = ["apigateway.aliyuncs.com", "ecs.aliyuncs.com"]
description = "this is a role test."
force = true
}
resource "alicloud_ram_policy" "policy" {
name = "policyName"
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_role_policy_attachment" "attach" {
policy_name = "${alicloud_ram_policy.policy.name}"
policy_type = "${alicloud_ram_policy.policy.type}"
role_name = "${alicloud_ram_role.role.name}"
}
» Argument Reference
The following arguments are supported:
-
role_name
- (Required, ForceNew) Name of the RAM Role. 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. -
role_name
- The role name. -
policy_name
- The policy name. -
policy_type
- The policy type.