Skip to content

Latest commit

 

History

History
91 lines (68 loc) · 1.42 KB

alicloud_api_gateway_group.md

File metadata and controls

91 lines (68 loc) · 1.42 KB

alicloud_api_gateway_group

back

Index

Terraform

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

top

Example Usage

module "alicloud_api_gateway_group" {
  source = "./modules/alicloud/r/alicloud_api_gateway_group"

  # description - (required) is a type of string
  description = null
  # name - (required) is a type of string
  name = null
}

top

Variables

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

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

top

Resource

resource "alicloud_api_gateway_group" "this" {
  # description - (required) is a type of string
  description = var.description
  # name - (required) is a type of string
  name = var.name
}

top

Outputs

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

output "sub_domain" {
  description = "returns a string"
  value       = alicloud_api_gateway_group.this.sub_domain
}

output "vpc_domain" {
  description = "returns a string"
  value       = alicloud_api_gateway_group.this.vpc_domain
}

output "this" {
  value = alicloud_api_gateway_group.this
}

top