Skip to content

Latest commit

 

History

History
87 lines (65 loc) · 1.37 KB

alicloud_kvstore_connections.md

File metadata and controls

87 lines (65 loc) · 1.37 KB

alicloud_kvstore_connections

back

Index

Terraform

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

top

Example Usage

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

  # ids - (required) is a type of list of string
  ids = []
  # output_file - (optional) is a type of string
  output_file = null
}

top

Variables

variable "ids" {
  description = "(required)"
  type        = list(string)
}

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

top

Datasource

data "alicloud_kvstore_connections" "this" {
  # ids - (required) is a type of list of string
  ids = var.ids
  # output_file - (optional) is a type of string
  output_file = var.output_file
}

top

Outputs

output "connections" {
  description = "returns a list of object"
  value       = data.alicloud_kvstore_connections.this.connections
}

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

output "this" {
  value = alicloud_kvstore_connections.this
}

top