Skip to content

Latest commit

 

History

History
135 lines (108 loc) · 2.57 KB

alicloud_alidns_instance.md

File metadata and controls

135 lines (108 loc) · 2.57 KB

alicloud_alidns_instance

back

Index

Terraform

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

top

Example Usage

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

  # dns_security - (required) is a type of string
  dns_security = null
  # domain_numbers - (required) is a type of string
  domain_numbers = null
  # payment_type - (optional) is a type of string
  payment_type = null
  # period - (optional) is a type of number
  period = null
  # renew_period - (optional) is a type of number
  renew_period = null
  # renewal_status - (optional) is a type of string
  renewal_status = null
  # version_code - (required) is a type of string
  version_code = null
}

top

Variables

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

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

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

variable "period" {
  description = "(optional)"
  type        = number
  default     = null
}

variable "renew_period" {
  description = "(optional)"
  type        = number
  default     = null
}

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

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

top

Resource

resource "alicloud_alidns_instance" "this" {
  # dns_security - (required) is a type of string
  dns_security = var.dns_security
  # domain_numbers - (required) is a type of string
  domain_numbers = var.domain_numbers
  # payment_type - (optional) is a type of string
  payment_type = var.payment_type
  # period - (optional) is a type of number
  period = var.period
  # renew_period - (optional) is a type of number
  renew_period = var.renew_period
  # renewal_status - (optional) is a type of string
  renewal_status = var.renewal_status
  # version_code - (required) is a type of string
  version_code = var.version_code
}

top

Outputs

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

output "version_name" {
  description = "returns a string"
  value       = alicloud_alidns_instance.this.version_name
}

output "this" {
  value = alicloud_alidns_instance.this
}

top