Skip to content

Latest commit

 

History

History
167 lines (136 loc) · 3.27 KB

alicloud_snat_entries.md

File metadata and controls

167 lines (136 loc) · 3.27 KB

alicloud_snat_entries

back

Index

Terraform

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

top

Example Usage

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

  # 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
  # snat_entry_name - (optional) is a type of string
  snat_entry_name = null
  # snat_ip - (optional) is a type of string
  snat_ip = null
  # snat_table_id - (required) is a type of string
  snat_table_id = null
  # source_cidr - (optional) is a type of string
  source_cidr = null
  # source_vswitch_id - (optional) is a type of string
  source_vswitch_id = null
  # status - (optional) is a type of string
  status = null
}

top

Variables

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 "snat_entry_name" {
  description = "(optional)"
  type        = string
  default     = null
}

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

variable "snat_table_id" {
  description = "(required)"
  type        = string
}

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

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

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

top

Datasource

data "alicloud_snat_entries" "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
  # snat_entry_name - (optional) is a type of string
  snat_entry_name = var.snat_entry_name
  # snat_ip - (optional) is a type of string
  snat_ip = var.snat_ip
  # snat_table_id - (required) is a type of string
  snat_table_id = var.snat_table_id
  # source_cidr - (optional) is a type of string
  source_cidr = var.source_cidr
  # source_vswitch_id - (optional) is a type of string
  source_vswitch_id = var.source_vswitch_id
  # status - (optional) is a type of string
  status = var.status
}

top

Outputs

output "entries" {
  description = "returns a list of object"
  value       = data.alicloud_snat_entries.this.entries
}

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

output "ids" {
  description = "returns a list of string"
  value       = data.alicloud_snat_entries.this.ids
}

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

output "this" {
  value = alicloud_snat_entries.this
}

top