alicloud_edas_namespace

Provides a EDAS Namespace resource.

For information about EDAS Namespace and how to use it, see What is Namespace.

Example Usage

Basic Usage

variable "name" {
  default = "tf-example"
}
data "alicloud_regions" "default" {
  current = true
}

resource "alicloud_edas_namespace" "default" {
  debug_enable         = false
  description          = var.name
  namespace_logical_id = "${data.alicloud_regions.default.regions.0.id}:example"
  namespace_name       = var.name
}

Argument Reference

The following arguments are supported:

Attributes Reference

The following attributes are exported:

Timeouts

The timeouts block allows you to specify timeouts for certain actions:

Import

EDAS Namespace can be imported using the id, e.g.

$ terraform import alicloud_edas_namespace.example <id>