alicloud_bp_studio_application
更新時間:
Provides a Cloud Architect Design Tools Application resource.
For information about Cloud Architect Design Tools Application and how to use it, see What is Application.
-> NOTE: Available in v1.192.0+.
Example Usage
Basic Usage
provider "alicloud" {
region = "cn-hangzhou"
}
variable "name" {
default = "tf-example"
}
data "alicloud_resource_manager_resource_groups" "default" {
}
data "alicloud_instances" "default" {
status = "Running"
}
resource "alicloud_bp_studio_application" "default" {
application_name = var.name
template_id = "YAUUQIYRSV1CMFGX"
resource_group_id = data.alicloud_resource_manager_resource_groups.default.groups.0.id
area_id = "cn-hangzhou"
instances {
id = "data.alicloud_instances.default.instances.0.id"
node_name = "data.alicloud_instances.default.instances.0.name"
node_type = "ecs"
}
configuration = {
enableMonitor = "1"
}
variables = {
test = "1"
}
}
Argument Reference
The following arguments are supported:
application_name
- (Required, ForceNew) The name of the application.template_id
- (Required, ForceNew) The id of the template.resource_group_id
- (Optional, ForceNew, Computed) The id of the resource group.area_id
- (Optional, ForceNew) The id of the area.instances
- (Optional, ForceNew) The instance list. Support the creation of instances in the existing vpc under the application. See the followingBlock instances
.configuration
- (Optional, ForceNew) The configuration of the application.variables
- (Optional, ForceNew) The variables of the application.
Block instances
The instances supports the following:
id
- (Optional, ForceNew) The id of the instance.node_name
- (Optional, ForceNew) The name of the instance.node_type
- (Optional, ForceNew) The type of the instance.
Attributes Reference
The following attributes are exported:
id
- The resource ID in terraform of Application.status
- The status of the Application.
Timeouts
The timeouts
block allows you to specify timeouts for certain actions:
create
- (Defaults to 120 mins) Used when create the Application.delete
- (Defaults to 120 mins) Used when delete the Application.
Import
Cloud Architect Design Tools Application can be imported using the id, e.g.
$ terraform import alicloud_bp_studio_application.example <id>
文檔內容是否對您有幫助?