日本熟妇hd丰满老熟妇,中文字幕一区二区三区在线不卡 ,亚洲成片在线观看,免费女同在线一区二区

alicloud_kms_secrets

更新時(shí)間:

This data source provides a list of KMS Secrets in an Alibaba Cloud account according to the specified filters.

-> NOTE: Available in v1.86.0+.

Example Usage

# Declare the data source
data "alicloud_kms_secrets" "kms_secrets_ds" {
  fetch_tags = true
  name_regex = "name_regex"
  tags = {
    "k-aa" = "v-aa",
    "k-bb" = "v-bb"
  }
}

output "first_secret_id" {
  value = "${data.alicloud_kms_secrets.kms_secrets_ds.secrets.0.id}"
}

Argument Reference

The following arguments are supported:

  • fetch_tags - (Optional) Whether to include the predetermined resource tag in the return value. Default to false.
  • ids - (Optional) A list of KMS Secret ids. The value is same as KMS secret_name.
  • name_regex - (Optional) A regex string to filter the results by the KMS secret_name.
  • output_file - (Optional) File name where to save data source results (after running terraform plan).
  • tags - (Optional) A mapping of tags to assign to the resource.
  • filters - (Optional, Available in 1.124.0+) The secret filter. The filter consists of one or more key-value pairs. More details see API ListSecrets.
  • enable_details - (Optional, Available in 1.124.0+) Default to false. Set it to true can output more details.

Attributes Reference

The following attributes are exported in addition to the arguments listed above:

  • ids - A list of Kms Secret ids. The value is same as KMS secret_name.
  • names - A list of KMS Secret names.
  • secrets - A list of KMS Secrets. Each element contains the following attributes:
    • id - ID of the Kms Secret. The value is same as KMS secret_name.
    • secret_name - Name of the KMS Secret.
    • planned_delete_time - Schedule deletion time.
    • arn - (Available in 1.124.0+) A mapping of tags to assign to the resource.
    • description - (Available in 1.124.0+) The description of the secret.
    • encryption_key_id - (Available in 1.124.0+) The ID of the KMS CMK that is used to encrypt the secret value.
    • secret_data - (Available in 1.124.0+) The value of the secret that you want to create.
    • secret_data_type - (Available in 1.124.0+) The type of the secret data value.
    • secret_type - (Available in 1.124.0+) The type of the secret.
    • version_id - (Available in 1.124.0+) The version number of the initial version.
    • version_stages - (Available in 1.124.0+) The stage labels that mark the new secret version.
    • tags - (Optional) A mapping of tags to assign to the resource.