Skip to content

Latest commit

 

History

History
93 lines (70 loc) · 1.46 KB

alicloud_mns_queues.md

File metadata and controls

93 lines (70 loc) · 1.46 KB

alicloud_mns_queues

back

Index

Terraform

terraform {
  required_providers {
    alicloud = ">= 1.120.0"
  }
}

top

Example Usage

module "alicloud_mns_queues" {
  source = "./modules/alicloud/d/alicloud_mns_queues"

  # name_prefix - (optional) is a type of string
  name_prefix = null
  # output_file - (optional) is a type of string
  output_file = null
}

top

Variables

variable "name_prefix" {
  description = "(optional)"
  type        = string
  default     = null
}

variable "output_file" {
  description = "(optional)"
  type        = string
  default     = null
}

top

Datasource

data "alicloud_mns_queues" "this" {
  # name_prefix - (optional) is a type of string
  name_prefix = var.name_prefix
  # output_file - (optional) is a type of string
  output_file = var.output_file
}

top

Outputs

output "id" {
  description = "returns a string"
  value       = data.alicloud_mns_queues.this.id
}

output "names" {
  description = "returns a list of string"
  value       = data.alicloud_mns_queues.this.names
}

output "queues" {
  description = "returns a list of object"
  value       = data.alicloud_mns_queues.this.queues
}

output "this" {
  value = alicloud_mns_queues.this
}

top