alicloud_oos_parameter

Provides a OOS Parameter resource.

For information about OOS Parameter and how to use it, see What is Parameter.

Example Usage

Basic Usage

data "alicloud_resource_manager_resource_groups" "default" {}

resource "alicloud_oos_parameter" "example" {
  parameter_name = "my-Parameter"
  type           = "String"
  value          = "example_value"
  description    = "example_value"
  tags = {
    Created = "TF"
    For     = "OosParameter"
  }
  resource_group_id = data.alicloud_resource_manager_resource_groups.default.groups.0.id
}

Argument Reference

The following arguments are supported:

Attributes Reference

The following attributes are exported:

Import

OOS Parameter can be imported using the id, e.g.

$ terraform import alicloud_oos_parameter.example <parameter_name>