back
terraform {
required_providers {
alicloud = ">= 1.120.0"
}
}
top
module "alicloud_ram_roles" {
source = "./modules/alicloud/d/alicloud_ram_roles"
# ids - (optional) is a type of list of string
ids = []
# name_regex - (optional) is a type of string
name_regex = null
# output_file - (optional) is a type of string
output_file = null
# policy_name - (optional) is a type of string
policy_name = null
# policy_type - (optional) is a type of string
policy_type = null
}
top
variable "ids" {
description = "(optional)"
type = list(string)
default = null
}
variable "name_regex" {
description = "(optional)"
type = string
default = null
}
variable "output_file" {
description = "(optional)"
type = string
default = null
}
variable "policy_name" {
description = "(optional)"
type = string
default = null
}
variable "policy_type" {
description = "(optional)"
type = string
default = null
}
top
data "alicloud_ram_roles" "this" {
# ids - (optional) is a type of list of string
ids = var.ids
# name_regex - (optional) is a type of string
name_regex = var.name_regex
# output_file - (optional) is a type of string
output_file = var.output_file
# policy_name - (optional) is a type of string
policy_name = var.policy_name
# policy_type - (optional) is a type of string
policy_type = var.policy_type
}
top
output "id" {
description = "returns a string"
value = data.alicloud_ram_roles.this.id
}
output "ids" {
description = "returns a list of string"
value = data.alicloud_ram_roles.this.ids
}
output "names" {
description = "returns a list of string"
value = data.alicloud_ram_roles.this.names
}
output "roles" {
description = "returns a list of object"
value = data.alicloud_ram_roles.this.roles
}
output "this" {
value = alicloud_ram_roles.this
}
top