Application
Creates an EDAS ecs application on EDAS. The application will be deployed when group_id
and war_url
are given.
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.Application;
import com.pulumi.alicloud.edas.ApplicationArgs;
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 Application("default", ApplicationArgs.builder()
.applicationName("xxx")
.clusterId("xxx")
.packageType("JAR")
.buildPackId(xxx)
.descriotion("xxx")
.healthCheckUrl("xxx")
.logicalRegionId("cn-xxxx:xxx")
.componentIds(xxx)
.ecuInfos("xxx")
.groupId("xxx")
.packageVersion("xxx")
.warUrl("http://xxx")
.build());
}
}
Content copied to clipboard
Import
EDAS application can be imported using the id, e.g.
$ pulumi import alicloud:edas/application:Application app app_Id
Content copied to clipboard
Properties
Link copied to clipboard
The package ID of Enterprise Distributed Application Service (EDAS) Container, which can be retrieved by calling container version list interface ListBuildPack or the "Pack ID" column in container version list. When creating High-speed Service Framework (HSF) application, this parameter is required.
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard