alicloud_ros_change_set

Provides a ROS Change Set resource.

For information about ROS Change Set and how to use it, see What is Change Set.

Example Usage

Basic Usage

resource "random_integer" "default" {
  min = 10000
  max = 99999
}

resource "alicloud_ros_change_set" "example" {
  change_set_name = "example_value"
  stack_name      = "tf-example-${random_integer.default.result}"
  change_set_type = "CREATE"
  description     = "Test From Terraform"
  template_body   = "{\"ROSTemplateFormatVersion\":\"2015-09-01\"}"
}

Argument Reference

The following arguments are supported:

Block parameters

The parameters supports the following:

Attributes Reference

The following attributes are exported:

Timeouts

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

Import

ROS Change Set can be imported using the id, e.g.

$ terraform import alicloud_ros_change_set.example <change_set_id>