ApplicationDeployment

Deploys applications on EDAS.

NOTE: Available in 1.82.0+

Example Usage

Basic Usage

package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.alicloud.edas.ApplicationDeployment;
import com.pulumi.alicloud.edas.ApplicationDeploymentArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var default_ = new ApplicationDeployment("default", ApplicationDeploymentArgs.builder()
.appId(var_.app_id())
.groupId(var_.group_id())
.packageVersion(var_.package_version())
.warUrl(var_.war_url())
.build());
}
}

Properties

Link copied to clipboard
val appId: Output<String>

The ID of the application that you want to deploy.

Link copied to clipboard
val groupId: Output<String>

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.

Link copied to clipboard
val id: Output<String>
Link copied to clipboard

Last package version deployed.

Link copied to clipboard
val packageVersion: Output<String>?

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.

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val urn: Output<String>
Link copied to clipboard
val warUrl: Output<String>

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.