1. Packages
  2. AWS Classic
  3. API Docs
  4. appconfig
  5. Deployment

Try AWS Native preview for resources not in the classic version.

AWS Classic v6.31.1 published on Thursday, Apr 18, 2024 by Pulumi

aws.appconfig.Deployment

Explore with Pulumi AI

aws logo

Try AWS Native preview for resources not in the classic version.

AWS Classic v6.31.1 published on Thursday, Apr 18, 2024 by Pulumi

    Provides an AppConfig Deployment resource for an aws.appconfig.Application resource.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as aws from "@pulumi/aws";
    
    const example = new aws.appconfig.Deployment("example", {
        applicationId: exampleAwsAppconfigApplication.id,
        configurationProfileId: exampleAwsAppconfigConfigurationProfile.configurationProfileId,
        configurationVersion: exampleAwsAppconfigHostedConfigurationVersion.versionNumber,
        deploymentStrategyId: exampleAwsAppconfigDeploymentStrategy.id,
        description: "My example deployment",
        environmentId: exampleAwsAppconfigEnvironment.environmentId,
        kmsKeyIdentifier: exampleAwsKmsKey.arn,
        tags: {
            Type: "AppConfig Deployment",
        },
    });
    
    import pulumi
    import pulumi_aws as aws
    
    example = aws.appconfig.Deployment("example",
        application_id=example_aws_appconfig_application["id"],
        configuration_profile_id=example_aws_appconfig_configuration_profile["configurationProfileId"],
        configuration_version=example_aws_appconfig_hosted_configuration_version["versionNumber"],
        deployment_strategy_id=example_aws_appconfig_deployment_strategy["id"],
        description="My example deployment",
        environment_id=example_aws_appconfig_environment["environmentId"],
        kms_key_identifier=example_aws_kms_key["arn"],
        tags={
            "Type": "AppConfig Deployment",
        })
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/appconfig"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := appconfig.NewDeployment(ctx, "example", &appconfig.DeploymentArgs{
    			ApplicationId:          pulumi.Any(exampleAwsAppconfigApplication.Id),
    			ConfigurationProfileId: pulumi.Any(exampleAwsAppconfigConfigurationProfile.ConfigurationProfileId),
    			ConfigurationVersion:   pulumi.Any(exampleAwsAppconfigHostedConfigurationVersion.VersionNumber),
    			DeploymentStrategyId:   pulumi.Any(exampleAwsAppconfigDeploymentStrategy.Id),
    			Description:            pulumi.String("My example deployment"),
    			EnvironmentId:          pulumi.Any(exampleAwsAppconfigEnvironment.EnvironmentId),
    			KmsKeyIdentifier:       pulumi.Any(exampleAwsKmsKey.Arn),
    			Tags: pulumi.StringMap{
    				"Type": pulumi.String("AppConfig Deployment"),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Aws = Pulumi.Aws;
    
    return await Deployment.RunAsync(() => 
    {
        var example = new Aws.AppConfig.Deployment("example", new()
        {
            ApplicationId = exampleAwsAppconfigApplication.Id,
            ConfigurationProfileId = exampleAwsAppconfigConfigurationProfile.ConfigurationProfileId,
            ConfigurationVersion = exampleAwsAppconfigHostedConfigurationVersion.VersionNumber,
            DeploymentStrategyId = exampleAwsAppconfigDeploymentStrategy.Id,
            Description = "My example deployment",
            EnvironmentId = exampleAwsAppconfigEnvironment.EnvironmentId,
            KmsKeyIdentifier = exampleAwsKmsKey.Arn,
            Tags = 
            {
                { "Type", "AppConfig Deployment" },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.aws.appconfig.Deployment;
    import com.pulumi.aws.appconfig.DeploymentArgs;
    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 example = new Deployment("example", DeploymentArgs.builder()        
                .applicationId(exampleAwsAppconfigApplication.id())
                .configurationProfileId(exampleAwsAppconfigConfigurationProfile.configurationProfileId())
                .configurationVersion(exampleAwsAppconfigHostedConfigurationVersion.versionNumber())
                .deploymentStrategyId(exampleAwsAppconfigDeploymentStrategy.id())
                .description("My example deployment")
                .environmentId(exampleAwsAppconfigEnvironment.environmentId())
                .kmsKeyIdentifier(exampleAwsKmsKey.arn())
                .tags(Map.of("Type", "AppConfig Deployment"))
                .build());
    
        }
    }
    
    resources:
      example:
        type: aws:appconfig:Deployment
        properties:
          applicationId: ${exampleAwsAppconfigApplication.id}
          configurationProfileId: ${exampleAwsAppconfigConfigurationProfile.configurationProfileId}
          configurationVersion: ${exampleAwsAppconfigHostedConfigurationVersion.versionNumber}
          deploymentStrategyId: ${exampleAwsAppconfigDeploymentStrategy.id}
          description: My example deployment
          environmentId: ${exampleAwsAppconfigEnvironment.environmentId}
          kmsKeyIdentifier: ${exampleAwsKmsKey.arn}
          tags:
            Type: AppConfig Deployment
    

    Create Deployment Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new Deployment(name: string, args: DeploymentArgs, opts?: CustomResourceOptions);
    @overload
    def Deployment(resource_name: str,
                   args: DeploymentArgs,
                   opts: Optional[ResourceOptions] = None)
    
    @overload
    def Deployment(resource_name: str,
                   opts: Optional[ResourceOptions] = None,
                   application_id: Optional[str] = None,
                   configuration_profile_id: Optional[str] = None,
                   configuration_version: Optional[str] = None,
                   deployment_strategy_id: Optional[str] = None,
                   environment_id: Optional[str] = None,
                   description: Optional[str] = None,
                   kms_key_identifier: Optional[str] = None,
                   tags: Optional[Mapping[str, str]] = None)
    func NewDeployment(ctx *Context, name string, args DeploymentArgs, opts ...ResourceOption) (*Deployment, error)
    public Deployment(string name, DeploymentArgs args, CustomResourceOptions? opts = null)
    public Deployment(String name, DeploymentArgs args)
    public Deployment(String name, DeploymentArgs args, CustomResourceOptions options)
    
    type: aws:appconfig:Deployment
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args DeploymentArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args DeploymentArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args DeploymentArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args DeploymentArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args DeploymentArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

    The following reference example uses placeholder values for all input properties.

    var exampledeploymentResourceResourceFromAppconfigdeployment = new Aws.AppConfig.Deployment("exampledeploymentResourceResourceFromAppconfigdeployment", new()
    {
        ApplicationId = "string",
        ConfigurationProfileId = "string",
        ConfigurationVersion = "string",
        DeploymentStrategyId = "string",
        EnvironmentId = "string",
        Description = "string",
        KmsKeyIdentifier = "string",
        Tags = 
        {
            { "string", "string" },
        },
    });
    
    example, err := appconfig.NewDeployment(ctx, "exampledeploymentResourceResourceFromAppconfigdeployment", &appconfig.DeploymentArgs{
    	ApplicationId:          pulumi.String("string"),
    	ConfigurationProfileId: pulumi.String("string"),
    	ConfigurationVersion:   pulumi.String("string"),
    	DeploymentStrategyId:   pulumi.String("string"),
    	EnvironmentId:          pulumi.String("string"),
    	Description:            pulumi.String("string"),
    	KmsKeyIdentifier:       pulumi.String("string"),
    	Tags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    })
    
    var exampledeploymentResourceResourceFromAppconfigdeployment = new Deployment("exampledeploymentResourceResourceFromAppconfigdeployment", DeploymentArgs.builder()        
        .applicationId("string")
        .configurationProfileId("string")
        .configurationVersion("string")
        .deploymentStrategyId("string")
        .environmentId("string")
        .description("string")
        .kmsKeyIdentifier("string")
        .tags(Map.of("string", "string"))
        .build());
    
    exampledeployment_resource_resource_from_appconfigdeployment = aws.appconfig.Deployment("exampledeploymentResourceResourceFromAppconfigdeployment",
        application_id="string",
        configuration_profile_id="string",
        configuration_version="string",
        deployment_strategy_id="string",
        environment_id="string",
        description="string",
        kms_key_identifier="string",
        tags={
            "string": "string",
        })
    
    const exampledeploymentResourceResourceFromAppconfigdeployment = new aws.appconfig.Deployment("exampledeploymentResourceResourceFromAppconfigdeployment", {
        applicationId: "string",
        configurationProfileId: "string",
        configurationVersion: "string",
        deploymentStrategyId: "string",
        environmentId: "string",
        description: "string",
        kmsKeyIdentifier: "string",
        tags: {
            string: "string",
        },
    });
    
    type: aws:appconfig:Deployment
    properties:
        applicationId: string
        configurationProfileId: string
        configurationVersion: string
        deploymentStrategyId: string
        description: string
        environmentId: string
        kmsKeyIdentifier: string
        tags:
            string: string
    

    Deployment Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The Deployment resource accepts the following input properties:

    ApplicationId string
    Application ID. Must be between 4 and 7 characters in length.
    ConfigurationProfileId string
    Configuration profile ID. Must be between 4 and 7 characters in length.
    ConfigurationVersion string
    Configuration version to deploy. Can be at most 1024 characters.
    DeploymentStrategyId string
    Deployment strategy ID or name of a predefined deployment strategy. See Predefined Deployment Strategies for more details.
    EnvironmentId string
    Environment ID. Must be between 4 and 7 characters in length.
    Description string
    Description of the deployment. Can be at most 1024 characters.
    KmsKeyIdentifier string
    The KMS key identifier (key ID, key alias, or key ARN). AppConfig uses this to encrypt the configuration data using a customer managed key.
    Tags Dictionary<string, string>
    Map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    ApplicationId string
    Application ID. Must be between 4 and 7 characters in length.
    ConfigurationProfileId string
    Configuration profile ID. Must be between 4 and 7 characters in length.
    ConfigurationVersion string
    Configuration version to deploy. Can be at most 1024 characters.
    DeploymentStrategyId string
    Deployment strategy ID or name of a predefined deployment strategy. See Predefined Deployment Strategies for more details.
    EnvironmentId string
    Environment ID. Must be between 4 and 7 characters in length.
    Description string
    Description of the deployment. Can be at most 1024 characters.
    KmsKeyIdentifier string
    The KMS key identifier (key ID, key alias, or key ARN). AppConfig uses this to encrypt the configuration data using a customer managed key.
    Tags map[string]string
    Map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    applicationId String
    Application ID. Must be between 4 and 7 characters in length.
    configurationProfileId String
    Configuration profile ID. Must be between 4 and 7 characters in length.
    configurationVersion String
    Configuration version to deploy. Can be at most 1024 characters.
    deploymentStrategyId String
    Deployment strategy ID or name of a predefined deployment strategy. See Predefined Deployment Strategies for more details.
    environmentId String
    Environment ID. Must be between 4 and 7 characters in length.
    description String
    Description of the deployment. Can be at most 1024 characters.
    kmsKeyIdentifier String
    The KMS key identifier (key ID, key alias, or key ARN). AppConfig uses this to encrypt the configuration data using a customer managed key.
    tags Map<String,String>
    Map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    applicationId string
    Application ID. Must be between 4 and 7 characters in length.
    configurationProfileId string
    Configuration profile ID. Must be between 4 and 7 characters in length.
    configurationVersion string
    Configuration version to deploy. Can be at most 1024 characters.
    deploymentStrategyId string
    Deployment strategy ID or name of a predefined deployment strategy. See Predefined Deployment Strategies for more details.
    environmentId string
    Environment ID. Must be between 4 and 7 characters in length.
    description string
    Description of the deployment. Can be at most 1024 characters.
    kmsKeyIdentifier string
    The KMS key identifier (key ID, key alias, or key ARN). AppConfig uses this to encrypt the configuration data using a customer managed key.
    tags {[key: string]: string}
    Map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    application_id str
    Application ID. Must be between 4 and 7 characters in length.
    configuration_profile_id str
    Configuration profile ID. Must be between 4 and 7 characters in length.
    configuration_version str
    Configuration version to deploy. Can be at most 1024 characters.
    deployment_strategy_id str
    Deployment strategy ID or name of a predefined deployment strategy. See Predefined Deployment Strategies for more details.
    environment_id str
    Environment ID. Must be between 4 and 7 characters in length.
    description str
    Description of the deployment. Can be at most 1024 characters.
    kms_key_identifier str
    The KMS key identifier (key ID, key alias, or key ARN). AppConfig uses this to encrypt the configuration data using a customer managed key.
    tags Mapping[str, str]
    Map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    applicationId String
    Application ID. Must be between 4 and 7 characters in length.
    configurationProfileId String
    Configuration profile ID. Must be between 4 and 7 characters in length.
    configurationVersion String
    Configuration version to deploy. Can be at most 1024 characters.
    deploymentStrategyId String
    Deployment strategy ID or name of a predefined deployment strategy. See Predefined Deployment Strategies for more details.
    environmentId String
    Environment ID. Must be between 4 and 7 characters in length.
    description String
    Description of the deployment. Can be at most 1024 characters.
    kmsKeyIdentifier String
    The KMS key identifier (key ID, key alias, or key ARN). AppConfig uses this to encrypt the configuration data using a customer managed key.
    tags Map<String>
    Map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the Deployment resource produces the following output properties:

    Arn string
    ARN of the AppConfig Deployment.
    DeploymentNumber int
    Deployment number.
    Id string
    The provider-assigned unique ID for this managed resource.
    KmsKeyArn string
    ARN of the KMS key used to encrypt configuration data.
    State string
    State of the deployment.
    TagsAll Dictionary<string, string>
    Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    Arn string
    ARN of the AppConfig Deployment.
    DeploymentNumber int
    Deployment number.
    Id string
    The provider-assigned unique ID for this managed resource.
    KmsKeyArn string
    ARN of the KMS key used to encrypt configuration data.
    State string
    State of the deployment.
    TagsAll map[string]string
    Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    arn String
    ARN of the AppConfig Deployment.
    deploymentNumber Integer
    Deployment number.
    id String
    The provider-assigned unique ID for this managed resource.
    kmsKeyArn String
    ARN of the KMS key used to encrypt configuration data.
    state String
    State of the deployment.
    tagsAll Map<String,String>
    Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    arn string
    ARN of the AppConfig Deployment.
    deploymentNumber number
    Deployment number.
    id string
    The provider-assigned unique ID for this managed resource.
    kmsKeyArn string
    ARN of the KMS key used to encrypt configuration data.
    state string
    State of the deployment.
    tagsAll {[key: string]: string}
    Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    arn str
    ARN of the AppConfig Deployment.
    deployment_number int
    Deployment number.
    id str
    The provider-assigned unique ID for this managed resource.
    kms_key_arn str
    ARN of the KMS key used to encrypt configuration data.
    state str
    State of the deployment.
    tags_all Mapping[str, str]
    Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    arn String
    ARN of the AppConfig Deployment.
    deploymentNumber Number
    Deployment number.
    id String
    The provider-assigned unique ID for this managed resource.
    kmsKeyArn String
    ARN of the KMS key used to encrypt configuration data.
    state String
    State of the deployment.
    tagsAll Map<String>
    Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    Look up Existing Deployment Resource

    Get an existing Deployment resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: DeploymentState, opts?: CustomResourceOptions): Deployment
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            application_id: Optional[str] = None,
            arn: Optional[str] = None,
            configuration_profile_id: Optional[str] = None,
            configuration_version: Optional[str] = None,
            deployment_number: Optional[int] = None,
            deployment_strategy_id: Optional[str] = None,
            description: Optional[str] = None,
            environment_id: Optional[str] = None,
            kms_key_arn: Optional[str] = None,
            kms_key_identifier: Optional[str] = None,
            state: Optional[str] = None,
            tags: Optional[Mapping[str, str]] = None,
            tags_all: Optional[Mapping[str, str]] = None) -> Deployment
    func GetDeployment(ctx *Context, name string, id IDInput, state *DeploymentState, opts ...ResourceOption) (*Deployment, error)
    public static Deployment Get(string name, Input<string> id, DeploymentState? state, CustomResourceOptions? opts = null)
    public static Deployment get(String name, Output<String> id, DeploymentState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    ApplicationId string
    Application ID. Must be between 4 and 7 characters in length.
    Arn string
    ARN of the AppConfig Deployment.
    ConfigurationProfileId string
    Configuration profile ID. Must be between 4 and 7 characters in length.
    ConfigurationVersion string
    Configuration version to deploy. Can be at most 1024 characters.
    DeploymentNumber int
    Deployment number.
    DeploymentStrategyId string
    Deployment strategy ID or name of a predefined deployment strategy. See Predefined Deployment Strategies for more details.
    Description string
    Description of the deployment. Can be at most 1024 characters.
    EnvironmentId string
    Environment ID. Must be between 4 and 7 characters in length.
    KmsKeyArn string
    ARN of the KMS key used to encrypt configuration data.
    KmsKeyIdentifier string
    The KMS key identifier (key ID, key alias, or key ARN). AppConfig uses this to encrypt the configuration data using a customer managed key.
    State string
    State of the deployment.
    Tags Dictionary<string, string>
    Map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    TagsAll Dictionary<string, string>
    Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    ApplicationId string
    Application ID. Must be between 4 and 7 characters in length.
    Arn string
    ARN of the AppConfig Deployment.
    ConfigurationProfileId string
    Configuration profile ID. Must be between 4 and 7 characters in length.
    ConfigurationVersion string
    Configuration version to deploy. Can be at most 1024 characters.
    DeploymentNumber int
    Deployment number.
    DeploymentStrategyId string
    Deployment strategy ID or name of a predefined deployment strategy. See Predefined Deployment Strategies for more details.
    Description string
    Description of the deployment. Can be at most 1024 characters.
    EnvironmentId string
    Environment ID. Must be between 4 and 7 characters in length.
    KmsKeyArn string
    ARN of the KMS key used to encrypt configuration data.
    KmsKeyIdentifier string
    The KMS key identifier (key ID, key alias, or key ARN). AppConfig uses this to encrypt the configuration data using a customer managed key.
    State string
    State of the deployment.
    Tags map[string]string
    Map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    TagsAll map[string]string
    Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    applicationId String
    Application ID. Must be between 4 and 7 characters in length.
    arn String
    ARN of the AppConfig Deployment.
    configurationProfileId String
    Configuration profile ID. Must be between 4 and 7 characters in length.
    configurationVersion String
    Configuration version to deploy. Can be at most 1024 characters.
    deploymentNumber Integer
    Deployment number.
    deploymentStrategyId String
    Deployment strategy ID or name of a predefined deployment strategy. See Predefined Deployment Strategies for more details.
    description String
    Description of the deployment. Can be at most 1024 characters.
    environmentId String
    Environment ID. Must be between 4 and 7 characters in length.
    kmsKeyArn String
    ARN of the KMS key used to encrypt configuration data.
    kmsKeyIdentifier String
    The KMS key identifier (key ID, key alias, or key ARN). AppConfig uses this to encrypt the configuration data using a customer managed key.
    state String
    State of the deployment.
    tags Map<String,String>
    Map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    tagsAll Map<String,String>
    Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    applicationId string
    Application ID. Must be between 4 and 7 characters in length.
    arn string
    ARN of the AppConfig Deployment.
    configurationProfileId string
    Configuration profile ID. Must be between 4 and 7 characters in length.
    configurationVersion string
    Configuration version to deploy. Can be at most 1024 characters.
    deploymentNumber number
    Deployment number.
    deploymentStrategyId string
    Deployment strategy ID or name of a predefined deployment strategy. See Predefined Deployment Strategies for more details.
    description string
    Description of the deployment. Can be at most 1024 characters.
    environmentId string
    Environment ID. Must be between 4 and 7 characters in length.
    kmsKeyArn string
    ARN of the KMS key used to encrypt configuration data.
    kmsKeyIdentifier string
    The KMS key identifier (key ID, key alias, or key ARN). AppConfig uses this to encrypt the configuration data using a customer managed key.
    state string
    State of the deployment.
    tags {[key: string]: string}
    Map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    tagsAll {[key: string]: string}
    Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    application_id str
    Application ID. Must be between 4 and 7 characters in length.
    arn str
    ARN of the AppConfig Deployment.
    configuration_profile_id str
    Configuration profile ID. Must be between 4 and 7 characters in length.
    configuration_version str
    Configuration version to deploy. Can be at most 1024 characters.
    deployment_number int
    Deployment number.
    deployment_strategy_id str
    Deployment strategy ID or name of a predefined deployment strategy. See Predefined Deployment Strategies for more details.
    description str
    Description of the deployment. Can be at most 1024 characters.
    environment_id str
    Environment ID. Must be between 4 and 7 characters in length.
    kms_key_arn str
    ARN of the KMS key used to encrypt configuration data.
    kms_key_identifier str
    The KMS key identifier (key ID, key alias, or key ARN). AppConfig uses this to encrypt the configuration data using a customer managed key.
    state str
    State of the deployment.
    tags Mapping[str, str]
    Map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    tags_all Mapping[str, str]
    Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    applicationId String
    Application ID. Must be between 4 and 7 characters in length.
    arn String
    ARN of the AppConfig Deployment.
    configurationProfileId String
    Configuration profile ID. Must be between 4 and 7 characters in length.
    configurationVersion String
    Configuration version to deploy. Can be at most 1024 characters.
    deploymentNumber Number
    Deployment number.
    deploymentStrategyId String
    Deployment strategy ID or name of a predefined deployment strategy. See Predefined Deployment Strategies for more details.
    description String
    Description of the deployment. Can be at most 1024 characters.
    environmentId String
    Environment ID. Must be between 4 and 7 characters in length.
    kmsKeyArn String
    ARN of the KMS key used to encrypt configuration data.
    kmsKeyIdentifier String
    The KMS key identifier (key ID, key alias, or key ARN). AppConfig uses this to encrypt the configuration data using a customer managed key.
    state String
    State of the deployment.
    tags Map<String>
    Map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    tagsAll Map<String>
    Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    Import

    Using pulumi import, import AppConfig Deployments using the application ID, environment ID, and deployment number separated by a slash (/). For example:

    $ pulumi import aws:appconfig/deployment:Deployment example 71abcde/11xxxxx/1
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    AWS Classic pulumi/pulumi-aws
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the aws Terraform Provider.
    aws logo

    Try AWS Native preview for resources not in the classic version.

    AWS Classic v6.31.1 published on Thursday, Apr 18, 2024 by Pulumi