alicloud_service_catalog_provisioned_product

Provides a Service Catalog Provisioned Product resource.

For information about Service Catalog Provisioned Product and how to use it, see What is Provisioned Product.

Example Usage

Basic Usage

variable "name" {
  default = "tf-testAccServiceCatalogProvisionedProduct"
}

resource "alicloud_service_catalog_provisioned_product" "default" {
  provisioned_product_name = var.name
  stack_region_id          = "cn-hangzhou"
  product_version_id       = "pv-bp1d7dxy2pcc1g"
  product_id               = "prod-bp1u3dkc282cwd"
  portfolio_id             = "port-bp119dvn27jccw"
  tags = {
    "v1" = "tf-test"
  }
  parameters {
    parameter_key   = "role_name"
    parameter_value = var.name
  }
}

Argument Reference

The following arguments are supported:

Block Parameters

The Parameters support the following:

Attributes Reference

The following attributes are exported:

Timeouts

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

Import

Service Catalog Provisioned Product can be imported using the id, e.g.

$terraform import alicloud_service_catalog_provisioned_product.example <id>