Skip to content

Latest commit

 

History

History
111 lines (84 loc) · 1.91 KB

alicloud_resource_manager_resource_directory.md

File metadata and controls

111 lines (84 loc) · 1.91 KB

alicloud_resource_manager_resource_directory

back

Index

Terraform

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

top

Example Usage

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

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

  timeouts = [{
    update = null
  }]
}

top

Variables

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

variable "timeouts" {
  description = "nested block: NestingSingle, min items: 0, max items: 0"
  type = set(object(
    {
      update = string
    }
  ))
  default = []
}

top

Resource

resource "alicloud_resource_manager_resource_directory" "this" {
  # status - (optional) is a type of string
  status = var.status

  dynamic "timeouts" {
    for_each = var.timeouts
    content {
      # update - (optional) is a type of string
      update = timeouts.value["update"]
    }
  }

}

top

Outputs

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

output "master_account_id" {
  description = "returns a string"
  value       = alicloud_resource_manager_resource_directory.this.master_account_id
}

output "master_account_name" {
  description = "returns a string"
  value       = alicloud_resource_manager_resource_directory.this.master_account_name
}

output "root_folder_id" {
  description = "returns a string"
  value       = alicloud_resource_manager_resource_directory.this.root_folder_id
}

output "this" {
  value = alicloud_resource_manager_resource_directory.this
}

top