Skip to content

Latest commit

 

History

History
78 lines (57 loc) · 1.08 KB

alicloud_dcdn_service.md

File metadata and controls

78 lines (57 loc) · 1.08 KB

alicloud_dcdn_service

back

Index

Terraform

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

top

Example Usage

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

  # enable - (optional) is a type of string
  enable = null
}

top

Variables

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

top

Datasource

data "alicloud_dcdn_service" "this" {
  # enable - (optional) is a type of string
  enable = var.enable
}

top

Outputs

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

output "status" {
  description = "returns a string"
  value       = data.alicloud_dcdn_service.this.status
}

output "this" {
  value = alicloud_dcdn_service.this
}

top