Skip to content

Latest commit

 

History

History
72 lines (52 loc) · 922 Bytes

alicloud_sag_qos.md

File metadata and controls

72 lines (52 loc) · 922 Bytes

alicloud_sag_qos

back

Index

Terraform

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

top

Example Usage

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

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

top

Variables

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

top

Resource

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

top

Outputs

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

output "this" {
  value = alicloud_sag_qos.this
}

top