alicloud_ram_access_key

Provides a RAM User access key resource.

Example Usage

# Create a new RAM access key for user.
resource "alicloud_ram_user" "user" {
  name = "user_test"
  display_name = "user_display_name"
  mobile = "86-18688888888"
  email = "[email protected]"
  comments = "yoyoyo"
  force = true
}

resource "alicloud_ram_access_key" "ak" {
  user_name = "${alicloud_ram_user.user.name}"
  secret_file = "/xxx/xxx/xxx.txt"
}

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.
  • secret_file - (Optional, Forces new resource) The name of file that can save access key id and access key secret. Strongly suggest you to specified it when you creating access key, otherwise, you wouldn't get its secret ever.
  • status - (Optional) Status of access key. It must be Active or Inactive. Default value is Active.

Attributes Reference

The following attributes are exported:

  • id - The access key ID.
  • status - The access key status.

© 2018 HashiCorp
Licensed under the MPL 2.0 License.
https://www.terraform.io/docs/providers/alicloud/r/ram_access_key.html