alicloud_edas_application_deployment
更新时间:
Deploys applications on EDAS, see What is EDAS Application Deployment.
-> NOTE: Available since v1.82.0.
Example Usage
Basic Usage
variable "name" {
default = "tf-example"
}
data "alicloud_regions" "default" {
current = true
}
data "alicloud_zones" "default" {
available_resource_creation = "VSwitch"
}
data "alicloud_images" "default" {
name_regex = "^ubuntu_[0-9]+_[0-9]+_x64*"
owners = "system"
}
data "alicloud_instance_types" "default" {
availability_zone = data.alicloud_zones.default.zones.0.id
cpu_core_count = 1
memory_size = 2
}
resource "alicloud_vpc" "default" {
vpc_name = var.name
cidr_block = "10.4.0.0/16"
}
resource "alicloud_vswitch" "default" {
vswitch_name = var.name
cidr_block = "10.4.0.0/24"
vpc_id = alicloud_vpc.default.id
zone_id = data.alicloud_zones.default.zones.0.id
}
resource "alicloud_security_group" "default" {
vpc_id = alicloud_vpc.default.id
}
resource "alicloud_instance" "default" {
availability_zone = data.alicloud_zones.default.zones.0.id
instance_name = var.name
image_id = data.alicloud_images.default.images.0.id
instance_type = data.alicloud_instance_types.default.instance_types.0.id
security_groups = [alicloud_security_group.default.id]
vswitch_id = alicloud_vswitch.default.id
}
resource "alicloud_edas_cluster" "default" {
cluster_name = var.name
cluster_type = "2"
network_mode = "2"
logical_region_id = data.alicloud_regions.default.regions.0.id
vpc_id = alicloud_vpc.default.id
}
resource "alicloud_edas_instance_cluster_attachment" "default" {
cluster_id = alicloud_edas_cluster.default.id
instance_ids = [alicloud_instance.default.id]
}
resource "alicloud_edas_application" "default" {
application_name = var.name
cluster_id = alicloud_edas_cluster.default.id
package_type = "JAR"
}
resource "alicloud_edas_deploy_group" "default" {
app_id = alicloud_edas_application.default.id
group_name = var.name
}
resource "alicloud_edas_application_deployment" "default" {
app_id = alicloud_edas_application.default.id
group_id = "all"
war_url = "http://edas-sz.oss-cn-shenzhen.aliyuncs.com/prod/demo/SPRING_CLOUD_CONSUMER.jar"
}
Argument Reference
The following arguments are supported:
app_id
- (Required, ForceNew) The ID of the application that you want to deploy.group_id
- (Required, ForceNew) The ID of the instance group where the application is going to be deployed. Set this parameter to all if you want to deploy the application to all groups.package_version
- (Optional, ForceNew) The version of the application that you want to deploy. It must be unique for every application. The length cannot exceed 64 characters. We recommended you to use a timestamp.war_url
- (Required, ForceNew) The address to store the uploaded web application (WAR) package for application deployment. This parameter is required when the deployType parameter is set as url.last_package_version
- (ForceNew) Last package version deployed.
Attributes Reference
The following attributes are exported:
id
- Thekey
of the resource supplied above. The value is formulated as<app_id>:<package_version>
.
文档内容是否对您有帮助?