EcsDeploymentSetArgs

data class EcsDeploymentSetArgs(val deploymentSetName: Output<String>? = null, val description: Output<String>? = null, val domain: Output<String>? = null, val granularity: Output<String>? = null, val onUnableToRedeployFailedInstance: Output<String>? = null, val strategy: Output<String>? = null) : ConvertibleToJava<EcsDeploymentSetArgs>

Provides a ECS Deployment Set resource. For information about ECS Deployment Set and how to use it, see What is Deployment Set.

NOTE: Available since v1.140.0.

Example Usage

Basic Usage

import * as pulumi from "@pulumi/pulumi";
import * as alicloud from "@pulumi/alicloud";
const config = new pulumi.Config();
const name = config.get("name") || "terraform-example";
const _default = new alicloud.ecs.EcsDeploymentSet("default", {
strategy: "Availability",
deploymentSetName: name,
description: name,
});
import pulumi
import pulumi_alicloud as alicloud
config = pulumi.Config()
name = config.get("name")
if name is None:
name = "terraform-example"
default = alicloud.ecs.EcsDeploymentSet("default",
strategy="Availability",
deployment_set_name=name,
description=name)
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AliCloud = Pulumi.AliCloud;
return await Deployment.RunAsync(() =>
{
var config = new Config();
var name = config.Get("name") ?? "terraform-example";
var @default = new AliCloud.Ecs.EcsDeploymentSet("default", new()
{
Strategy = "Availability",
DeploymentSetName = name,
Description = name,
});
});
package main
import (
"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/ecs"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi/config"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
cfg := config.New(ctx, "")
name := "terraform-example"
if param := cfg.Get("name"); param != "" {
name = param
}
_, err := ecs.NewEcsDeploymentSet(ctx, "default", &ecs.EcsDeploymentSetArgs{
Strategy: pulumi.String("Availability"),
DeploymentSetName: pulumi.String(name),
Description: pulumi.String(name),
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.alicloud.ecs.EcsDeploymentSet;
import com.pulumi.alicloud.ecs.EcsDeploymentSetArgs;
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) {
final var config = ctx.config();
final var name = config.get("name").orElse("terraform-example");
var default_ = new EcsDeploymentSet("default", EcsDeploymentSetArgs.builder()
.strategy("Availability")
.deploymentSetName(name)
.description(name)
.build());
}
}
configuration:
name:
type: string
default: terraform-example
resources:
default:
type: alicloud:ecs:EcsDeploymentSet
properties:
strategy: Availability
deploymentSetName: ${name}
description: ${name}

Import

ECS Deployment Set can be imported using the id, e.g.

$ pulumi import alicloud:ecs/ecsDeploymentSet:EcsDeploymentSet example <id>

Constructors

Link copied to clipboard
constructor(deploymentSetName: Output<String>? = null, description: Output<String>? = null, domain: Output<String>? = null, granularity: Output<String>? = null, onUnableToRedeployFailedInstance: Output<String>? = null, strategy: Output<String>? = null)

Properties

Link copied to clipboard
val deploymentSetName: Output<String>? = null

The name of the deployment set. The name must be 2 to 128 characters in length and can contain letters, digits, colons (:), underscores (_), and hyphens (-). It must start with a letter and cannot start with http:// or https://.

Link copied to clipboard
val description: Output<String>? = null

The description of the deployment set. The description must be 2 to 256 characters in length and cannot start with http:// or https://.

Link copied to clipboard
val domain: Output<String>? = null

Field domain has been deprecated from provider version 1.243.0.

Link copied to clipboard
val granularity: Output<String>? = null

Field granularity has been deprecated from provider version 1.243.0.

Link copied to clipboard

The emergency solution to use in the situation where instances in the deployment set cannot be evenly distributed to different zones due to resource insufficiency after the instances failover. Valid values:

Link copied to clipboard
val strategy: Output<String>? = null

The deployment strategy. Default value: Availability. Valid values: Availability, AvailabilityGroup, LowLatency.

Functions

Link copied to clipboard
open override fun toJava(): EcsDeploymentSetArgs