1. Packages
  2. AWS
  3. API Docs
  4. appconfig
  5. Deployment
AWS v6.77.0 published on Wednesday, Apr 9, 2025 by Pulumi

aws.appconfig.Deployment

Explore with Pulumi AI

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",
    },
});
Copy
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",
    })
Copy
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
	})
}
Copy
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" },
        },
    });

});
Copy
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());

    }
}
Copy
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
Copy

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 This property is required. string
The unique name of the resource.
args This property is required. DeploymentArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. 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 This property is required. string
The unique name of the resource.
args This property is required. DeploymentArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. DeploymentArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. DeploymentArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

Constructor 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" },
    },
});
Copy
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"),
	},
})
Copy
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());
Copy
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",
    })
Copy
const exampledeploymentResourceResourceFromAppconfigdeployment = new aws.appconfig.Deployment("exampledeploymentResourceResourceFromAppconfigdeployment", {
    applicationId: "string",
    configurationProfileId: "string",
    configurationVersion: "string",
    deploymentStrategyId: "string",
    environmentId: "string",
    description: "string",
    kmsKeyIdentifier: "string",
    tags: {
        string: "string",
    },
});
Copy
type: aws:appconfig:Deployment
properties:
    applicationId: string
    configurationProfileId: string
    configurationVersion: string
    deploymentStrategyId: string
    description: string
    environmentId: string
    kmsKeyIdentifier: string
    tags:
        string: string
Copy

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

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The Deployment resource accepts the following input properties:

ApplicationId
This property is required.
Changes to this property will trigger replacement.
string
Application ID. Must be between 4 and 7 characters in length.
ConfigurationProfileId
This property is required.
Changes to this property will trigger replacement.
string
Configuration profile ID. Must be between 4 and 7 characters in length.
ConfigurationVersion
This property is required.
Changes to this property will trigger replacement.
string
Configuration version to deploy. Can be at most 1024 characters.
DeploymentStrategyId
This property is required.
Changes to this property will trigger replacement.
string
Deployment strategy ID or name of a predefined deployment strategy. See Predefined Deployment Strategies for more details.
EnvironmentId
This property is required.
Changes to this property will trigger replacement.
string
Environment ID. Must be between 4 and 7 characters in length.
Description Changes to this property will trigger replacement. string
Description of the deployment. Can be at most 1024 characters.
KmsKeyIdentifier Changes to this property will trigger replacement. 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
This property is required.
Changes to this property will trigger replacement.
string
Application ID. Must be between 4 and 7 characters in length.
ConfigurationProfileId
This property is required.
Changes to this property will trigger replacement.
string
Configuration profile ID. Must be between 4 and 7 characters in length.
ConfigurationVersion
This property is required.
Changes to this property will trigger replacement.
string
Configuration version to deploy. Can be at most 1024 characters.
DeploymentStrategyId
This property is required.
Changes to this property will trigger replacement.
string
Deployment strategy ID or name of a predefined deployment strategy. See Predefined Deployment Strategies for more details.
EnvironmentId
This property is required.
Changes to this property will trigger replacement.
string
Environment ID. Must be between 4 and 7 characters in length.
Description Changes to this property will trigger replacement. string
Description of the deployment. Can be at most 1024 characters.
KmsKeyIdentifier Changes to this property will trigger replacement. 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
This property is required.
Changes to this property will trigger replacement.
String
Application ID. Must be between 4 and 7 characters in length.
configurationProfileId
This property is required.
Changes to this property will trigger replacement.
String
Configuration profile ID. Must be between 4 and 7 characters in length.
configurationVersion
This property is required.
Changes to this property will trigger replacement.
String
Configuration version to deploy. Can be at most 1024 characters.
deploymentStrategyId
This property is required.
Changes to this property will trigger replacement.
String
Deployment strategy ID or name of a predefined deployment strategy. See Predefined Deployment Strategies for more details.
environmentId
This property is required.
Changes to this property will trigger replacement.
String
Environment ID. Must be between 4 and 7 characters in length.
description Changes to this property will trigger replacement. String
Description of the deployment. Can be at most 1024 characters.
kmsKeyIdentifier Changes to this property will trigger replacement. 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
This property is required.
Changes to this property will trigger replacement.
string
Application ID. Must be between 4 and 7 characters in length.
configurationProfileId
This property is required.
Changes to this property will trigger replacement.
string
Configuration profile ID. Must be between 4 and 7 characters in length.
configurationVersion
This property is required.
Changes to this property will trigger replacement.
string
Configuration version to deploy. Can be at most 1024 characters.
deploymentStrategyId
This property is required.
Changes to this property will trigger replacement.
string
Deployment strategy ID or name of a predefined deployment strategy. See Predefined Deployment Strategies for more details.
environmentId
This property is required.
Changes to this property will trigger replacement.
string
Environment ID. Must be between 4 and 7 characters in length.
description Changes to this property will trigger replacement. string
Description of the deployment. Can be at most 1024 characters.
kmsKeyIdentifier Changes to this property will trigger replacement. 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
This property is required.
Changes to this property will trigger replacement.
str
Application ID. Must be between 4 and 7 characters in length.
configuration_profile_id
This property is required.
Changes to this property will trigger replacement.
str
Configuration profile ID. Must be between 4 and 7 characters in length.
configuration_version
This property is required.
Changes to this property will trigger replacement.
str
Configuration version to deploy. Can be at most 1024 characters.
deployment_strategy_id
This property is required.
Changes to this property will trigger replacement.
str
Deployment strategy ID or name of a predefined deployment strategy. See Predefined Deployment Strategies for more details.
environment_id
This property is required.
Changes to this property will trigger replacement.
str
Environment ID. Must be between 4 and 7 characters in length.
description Changes to this property will trigger replacement. str
Description of the deployment. Can be at most 1024 characters.
kms_key_identifier Changes to this property will trigger replacement. 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
This property is required.
Changes to this property will trigger replacement.
String
Application ID. Must be between 4 and 7 characters in length.
configurationProfileId
This property is required.
Changes to this property will trigger replacement.
String
Configuration profile ID. Must be between 4 and 7 characters in length.
configurationVersion
This property is required.
Changes to this property will trigger replacement.
String
Configuration version to deploy. Can be at most 1024 characters.
deploymentStrategyId
This property is required.
Changes to this property will trigger replacement.
String
Deployment strategy ID or name of a predefined deployment strategy. See Predefined Deployment Strategies for more details.
environmentId
This property is required.
Changes to this property will trigger replacement.
String
Environment ID. Must be between 4 and 7 characters in length.
description Changes to this property will trigger replacement. String
Description of the deployment. Can be at most 1024 characters.
kmsKeyIdentifier Changes to this property will trigger replacement. 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)
resources:  _:    type: aws:appconfig:Deployment    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 Changes to this property will trigger replacement. string
Application ID. Must be between 4 and 7 characters in length.
Arn string
ARN of the AppConfig Deployment.
ConfigurationProfileId Changes to this property will trigger replacement. string
Configuration profile ID. Must be between 4 and 7 characters in length.
ConfigurationVersion Changes to this property will trigger replacement. string
Configuration version to deploy. Can be at most 1024 characters.
DeploymentNumber int
Deployment number.
DeploymentStrategyId Changes to this property will trigger replacement. string
Deployment strategy ID or name of a predefined deployment strategy. See Predefined Deployment Strategies for more details.
Description Changes to this property will trigger replacement. string
Description of the deployment. Can be at most 1024 characters.
EnvironmentId Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. string
Application ID. Must be between 4 and 7 characters in length.
Arn string
ARN of the AppConfig Deployment.
ConfigurationProfileId Changes to this property will trigger replacement. string
Configuration profile ID. Must be between 4 and 7 characters in length.
ConfigurationVersion Changes to this property will trigger replacement. string
Configuration version to deploy. Can be at most 1024 characters.
DeploymentNumber int
Deployment number.
DeploymentStrategyId Changes to this property will trigger replacement. string
Deployment strategy ID or name of a predefined deployment strategy. See Predefined Deployment Strategies for more details.
Description Changes to this property will trigger replacement. string
Description of the deployment. Can be at most 1024 characters.
EnvironmentId Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. String
Application ID. Must be between 4 and 7 characters in length.
arn String
ARN of the AppConfig Deployment.
configurationProfileId Changes to this property will trigger replacement. String
Configuration profile ID. Must be between 4 and 7 characters in length.
configurationVersion Changes to this property will trigger replacement. String
Configuration version to deploy. Can be at most 1024 characters.
deploymentNumber Integer
Deployment number.
deploymentStrategyId Changes to this property will trigger replacement. String
Deployment strategy ID or name of a predefined deployment strategy. See Predefined Deployment Strategies for more details.
description Changes to this property will trigger replacement. String
Description of the deployment. Can be at most 1024 characters.
environmentId Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. string
Application ID. Must be between 4 and 7 characters in length.
arn string
ARN of the AppConfig Deployment.
configurationProfileId Changes to this property will trigger replacement. string
Configuration profile ID. Must be between 4 and 7 characters in length.
configurationVersion Changes to this property will trigger replacement. string
Configuration version to deploy. Can be at most 1024 characters.
deploymentNumber number
Deployment number.
deploymentStrategyId Changes to this property will trigger replacement. string
Deployment strategy ID or name of a predefined deployment strategy. See Predefined Deployment Strategies for more details.
description Changes to this property will trigger replacement. string
Description of the deployment. Can be at most 1024 characters.
environmentId Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. str
Application ID. Must be between 4 and 7 characters in length.
arn str
ARN of the AppConfig Deployment.
configuration_profile_id Changes to this property will trigger replacement. str
Configuration profile ID. Must be between 4 and 7 characters in length.
configuration_version Changes to this property will trigger replacement. str
Configuration version to deploy. Can be at most 1024 characters.
deployment_number int
Deployment number.
deployment_strategy_id Changes to this property will trigger replacement. str
Deployment strategy ID or name of a predefined deployment strategy. See Predefined Deployment Strategies for more details.
description Changes to this property will trigger replacement. str
Description of the deployment. Can be at most 1024 characters.
environment_id Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. String
Application ID. Must be between 4 and 7 characters in length.
arn String
ARN of the AppConfig Deployment.
configurationProfileId Changes to this property will trigger replacement. String
Configuration profile ID. Must be between 4 and 7 characters in length.
configurationVersion Changes to this property will trigger replacement. String
Configuration version to deploy. Can be at most 1024 characters.
deploymentNumber Number
Deployment number.
deploymentStrategyId Changes to this property will trigger replacement. String
Deployment strategy ID or name of a predefined deployment strategy. See Predefined Deployment Strategies for more details.
description Changes to this property will trigger replacement. String
Description of the deployment. Can be at most 1024 characters.
environmentId Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. 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
Copy

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.