Try AWS Native preview for resources not in the classic version.
aws.appconfig.ConfigurationProfile
Explore with Pulumi AI
Try AWS Native preview for resources not in the classic version.
Provides an AppConfig Configuration Profile resource.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const example = new aws.appconfig.ConfigurationProfile("example", {
applicationId: exampleAwsAppconfigApplication.id,
description: "Example Configuration Profile",
name: "example-configuration-profile-tf",
locationUri: "hosted",
validators: [{
content: exampleAwsLambdaFunction.arn,
type: "LAMBDA",
}],
tags: {
Type: "AppConfig Configuration Profile",
},
});
import pulumi
import pulumi_aws as aws
example = aws.appconfig.ConfigurationProfile("example",
application_id=example_aws_appconfig_application["id"],
description="Example Configuration Profile",
name="example-configuration-profile-tf",
location_uri="hosted",
validators=[{
"content": example_aws_lambda_function["arn"],
"type": "LAMBDA",
}],
tags={
"Type": "AppConfig Configuration Profile",
})
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.NewConfigurationProfile(ctx, "example", &appconfig.ConfigurationProfileArgs{
ApplicationId: pulumi.Any(exampleAwsAppconfigApplication.Id),
Description: pulumi.String("Example Configuration Profile"),
Name: pulumi.String("example-configuration-profile-tf"),
LocationUri: pulumi.String("hosted"),
Validators: appconfig.ConfigurationProfileValidatorArray{
&appconfig.ConfigurationProfileValidatorArgs{
Content: pulumi.Any(exampleAwsLambdaFunction.Arn),
Type: pulumi.String("LAMBDA"),
},
},
Tags: pulumi.StringMap{
"Type": pulumi.String("AppConfig Configuration Profile"),
},
})
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.ConfigurationProfile("example", new()
{
ApplicationId = exampleAwsAppconfigApplication.Id,
Description = "Example Configuration Profile",
Name = "example-configuration-profile-tf",
LocationUri = "hosted",
Validators = new[]
{
new Aws.AppConfig.Inputs.ConfigurationProfileValidatorArgs
{
Content = exampleAwsLambdaFunction.Arn,
Type = "LAMBDA",
},
},
Tags =
{
{ "Type", "AppConfig Configuration Profile" },
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.appconfig.ConfigurationProfile;
import com.pulumi.aws.appconfig.ConfigurationProfileArgs;
import com.pulumi.aws.appconfig.inputs.ConfigurationProfileValidatorArgs;
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 ConfigurationProfile("example", ConfigurationProfileArgs.builder()
.applicationId(exampleAwsAppconfigApplication.id())
.description("Example Configuration Profile")
.name("example-configuration-profile-tf")
.locationUri("hosted")
.validators(ConfigurationProfileValidatorArgs.builder()
.content(exampleAwsLambdaFunction.arn())
.type("LAMBDA")
.build())
.tags(Map.of("Type", "AppConfig Configuration Profile"))
.build());
}
}
resources:
example:
type: aws:appconfig:ConfigurationProfile
properties:
applicationId: ${exampleAwsAppconfigApplication.id}
description: Example Configuration Profile
name: example-configuration-profile-tf
locationUri: hosted
validators:
- content: ${exampleAwsLambdaFunction.arn}
type: LAMBDA
tags:
Type: AppConfig Configuration Profile
Create ConfigurationProfile Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ConfigurationProfile(name: string, args: ConfigurationProfileArgs, opts?: CustomResourceOptions);
@overload
def ConfigurationProfile(resource_name: str,
args: ConfigurationProfileArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ConfigurationProfile(resource_name: str,
opts: Optional[ResourceOptions] = None,
application_id: Optional[str] = None,
location_uri: Optional[str] = None,
description: Optional[str] = None,
kms_key_identifier: Optional[str] = None,
name: Optional[str] = None,
retrieval_role_arn: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None,
type: Optional[str] = None,
validators: Optional[Sequence[ConfigurationProfileValidatorArgs]] = None)
func NewConfigurationProfile(ctx *Context, name string, args ConfigurationProfileArgs, opts ...ResourceOption) (*ConfigurationProfile, error)
public ConfigurationProfile(string name, ConfigurationProfileArgs args, CustomResourceOptions? opts = null)
public ConfigurationProfile(String name, ConfigurationProfileArgs args)
public ConfigurationProfile(String name, ConfigurationProfileArgs args, CustomResourceOptions options)
type: aws:appconfig:ConfigurationProfile
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 ConfigurationProfileArgs
- 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 ConfigurationProfileArgs
- 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 ConfigurationProfileArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ConfigurationProfileArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ConfigurationProfileArgs
- 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 configurationProfileResource = new Aws.AppConfig.ConfigurationProfile("configurationProfileResource", new()
{
ApplicationId = "string",
LocationUri = "string",
Description = "string",
KmsKeyIdentifier = "string",
Name = "string",
RetrievalRoleArn = "string",
Tags =
{
{ "string", "string" },
},
Type = "string",
Validators = new[]
{
new Aws.AppConfig.Inputs.ConfigurationProfileValidatorArgs
{
Type = "string",
Content = "string",
},
},
});
example, err := appconfig.NewConfigurationProfile(ctx, "configurationProfileResource", &appconfig.ConfigurationProfileArgs{
ApplicationId: pulumi.String("string"),
LocationUri: pulumi.String("string"),
Description: pulumi.String("string"),
KmsKeyIdentifier: pulumi.String("string"),
Name: pulumi.String("string"),
RetrievalRoleArn: pulumi.String("string"),
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
Type: pulumi.String("string"),
Validators: appconfig.ConfigurationProfileValidatorArray{
&appconfig.ConfigurationProfileValidatorArgs{
Type: pulumi.String("string"),
Content: pulumi.String("string"),
},
},
})
var configurationProfileResource = new ConfigurationProfile("configurationProfileResource", ConfigurationProfileArgs.builder()
.applicationId("string")
.locationUri("string")
.description("string")
.kmsKeyIdentifier("string")
.name("string")
.retrievalRoleArn("string")
.tags(Map.of("string", "string"))
.type("string")
.validators(ConfigurationProfileValidatorArgs.builder()
.type("string")
.content("string")
.build())
.build());
configuration_profile_resource = aws.appconfig.ConfigurationProfile("configurationProfileResource",
application_id="string",
location_uri="string",
description="string",
kms_key_identifier="string",
name="string",
retrieval_role_arn="string",
tags={
"string": "string",
},
type="string",
validators=[{
"type": "string",
"content": "string",
}])
const configurationProfileResource = new aws.appconfig.ConfigurationProfile("configurationProfileResource", {
applicationId: "string",
locationUri: "string",
description: "string",
kmsKeyIdentifier: "string",
name: "string",
retrievalRoleArn: "string",
tags: {
string: "string",
},
type: "string",
validators: [{
type: "string",
content: "string",
}],
});
type: aws:appconfig:ConfigurationProfile
properties:
applicationId: string
description: string
kmsKeyIdentifier: string
locationUri: string
name: string
retrievalRoleArn: string
tags:
string: string
type: string
validators:
- content: string
type: string
ConfigurationProfile 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 ConfigurationProfile resource accepts the following input properties:
- Application
Id string - Application ID. Must be between 4 and 7 characters in length.
- Location
Uri string - URI to locate the configuration. You can specify the AWS AppConfig hosted configuration store, Systems Manager (SSM) document, an SSM Parameter Store parameter, or an Amazon S3 object. For the hosted configuration store, specify
hosted
. For an SSM document, specify either the document name in the formatssm-document://<Document_name>
or the ARN. For a parameter, specify either the parameter name in the formatssm-parameter://<Parameter_name>
or the ARN. For an Amazon S3 object, specify the URI in the following format:s3://<bucket>/<objectKey>
. - Description string
- Description of the configuration profile. Can be at most 1024 characters.
- Kms
Key stringIdentifier - The identifier for an Key Management Service key to encrypt new configuration data versions in the AppConfig hosted configuration store. This attribute is only used for hosted configuration types. The identifier can be an KMS key ID, alias, or the Amazon Resource Name (ARN) of the key ID or alias.
- Name string
- Name for the configuration profile. Must be between 1 and 64 characters in length.
- Retrieval
Role stringArn - ARN of an IAM role with permission to access the configuration at the specified
location_uri
. A retrieval role ARN is not required for configurations stored in the AWS AppConfighosted
configuration store. It is required for all other sources that store your configuration. - 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. - Type string
- Type of configurations contained in the profile. Valid values:
AWS.AppConfig.FeatureFlags
andAWS.Freeform
. Default:AWS.Freeform
. - Validators
List<Configuration
Profile Validator> - Set of methods for validating the configuration. Maximum of 2. See Validator below for more details.
- Application
Id string - Application ID. Must be between 4 and 7 characters in length.
- Location
Uri string - URI to locate the configuration. You can specify the AWS AppConfig hosted configuration store, Systems Manager (SSM) document, an SSM Parameter Store parameter, or an Amazon S3 object. For the hosted configuration store, specify
hosted
. For an SSM document, specify either the document name in the formatssm-document://<Document_name>
or the ARN. For a parameter, specify either the parameter name in the formatssm-parameter://<Parameter_name>
or the ARN. For an Amazon S3 object, specify the URI in the following format:s3://<bucket>/<objectKey>
. - Description string
- Description of the configuration profile. Can be at most 1024 characters.
- Kms
Key stringIdentifier - The identifier for an Key Management Service key to encrypt new configuration data versions in the AppConfig hosted configuration store. This attribute is only used for hosted configuration types. The identifier can be an KMS key ID, alias, or the Amazon Resource Name (ARN) of the key ID or alias.
- Name string
- Name for the configuration profile. Must be between 1 and 64 characters in length.
- Retrieval
Role stringArn - ARN of an IAM role with permission to access the configuration at the specified
location_uri
. A retrieval role ARN is not required for configurations stored in the AWS AppConfighosted
configuration store. It is required for all other sources that store your configuration. - 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. - Type string
- Type of configurations contained in the profile. Valid values:
AWS.AppConfig.FeatureFlags
andAWS.Freeform
. Default:AWS.Freeform
. - Validators
[]Configuration
Profile Validator Args - Set of methods for validating the configuration. Maximum of 2. See Validator below for more details.
- application
Id String - Application ID. Must be between 4 and 7 characters in length.
- location
Uri String - URI to locate the configuration. You can specify the AWS AppConfig hosted configuration store, Systems Manager (SSM) document, an SSM Parameter Store parameter, or an Amazon S3 object. For the hosted configuration store, specify
hosted
. For an SSM document, specify either the document name in the formatssm-document://<Document_name>
or the ARN. For a parameter, specify either the parameter name in the formatssm-parameter://<Parameter_name>
or the ARN. For an Amazon S3 object, specify the URI in the following format:s3://<bucket>/<objectKey>
. - description String
- Description of the configuration profile. Can be at most 1024 characters.
- kms
Key StringIdentifier - The identifier for an Key Management Service key to encrypt new configuration data versions in the AppConfig hosted configuration store. This attribute is only used for hosted configuration types. The identifier can be an KMS key ID, alias, or the Amazon Resource Name (ARN) of the key ID or alias.
- name String
- Name for the configuration profile. Must be between 1 and 64 characters in length.
- retrieval
Role StringArn - ARN of an IAM role with permission to access the configuration at the specified
location_uri
. A retrieval role ARN is not required for configurations stored in the AWS AppConfighosted
configuration store. It is required for all other sources that store your configuration. - 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. - type String
- Type of configurations contained in the profile. Valid values:
AWS.AppConfig.FeatureFlags
andAWS.Freeform
. Default:AWS.Freeform
. - validators
List<Configuration
Profile Validator> - Set of methods for validating the configuration. Maximum of 2. See Validator below for more details.
- application
Id string - Application ID. Must be between 4 and 7 characters in length.
- location
Uri string - URI to locate the configuration. You can specify the AWS AppConfig hosted configuration store, Systems Manager (SSM) document, an SSM Parameter Store parameter, or an Amazon S3 object. For the hosted configuration store, specify
hosted
. For an SSM document, specify either the document name in the formatssm-document://<Document_name>
or the ARN. For a parameter, specify either the parameter name in the formatssm-parameter://<Parameter_name>
or the ARN. For an Amazon S3 object, specify the URI in the following format:s3://<bucket>/<objectKey>
. - description string
- Description of the configuration profile. Can be at most 1024 characters.
- kms
Key stringIdentifier - The identifier for an Key Management Service key to encrypt new configuration data versions in the AppConfig hosted configuration store. This attribute is only used for hosted configuration types. The identifier can be an KMS key ID, alias, or the Amazon Resource Name (ARN) of the key ID or alias.
- name string
- Name for the configuration profile. Must be between 1 and 64 characters in length.
- retrieval
Role stringArn - ARN of an IAM role with permission to access the configuration at the specified
location_uri
. A retrieval role ARN is not required for configurations stored in the AWS AppConfighosted
configuration store. It is required for all other sources that store your configuration. - {[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. - type string
- Type of configurations contained in the profile. Valid values:
AWS.AppConfig.FeatureFlags
andAWS.Freeform
. Default:AWS.Freeform
. - validators
Configuration
Profile Validator[] - Set of methods for validating the configuration. Maximum of 2. See Validator below for more details.
- application_
id str - Application ID. Must be between 4 and 7 characters in length.
- location_
uri str - URI to locate the configuration. You can specify the AWS AppConfig hosted configuration store, Systems Manager (SSM) document, an SSM Parameter Store parameter, or an Amazon S3 object. For the hosted configuration store, specify
hosted
. For an SSM document, specify either the document name in the formatssm-document://<Document_name>
or the ARN. For a parameter, specify either the parameter name in the formatssm-parameter://<Parameter_name>
or the ARN. For an Amazon S3 object, specify the URI in the following format:s3://<bucket>/<objectKey>
. - description str
- Description of the configuration profile. Can be at most 1024 characters.
- kms_
key_ stridentifier - The identifier for an Key Management Service key to encrypt new configuration data versions in the AppConfig hosted configuration store. This attribute is only used for hosted configuration types. The identifier can be an KMS key ID, alias, or the Amazon Resource Name (ARN) of the key ID or alias.
- name str
- Name for the configuration profile. Must be between 1 and 64 characters in length.
- retrieval_
role_ strarn - ARN of an IAM role with permission to access the configuration at the specified
location_uri
. A retrieval role ARN is not required for configurations stored in the AWS AppConfighosted
configuration store. It is required for all other sources that store your configuration. - 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. - type str
- Type of configurations contained in the profile. Valid values:
AWS.AppConfig.FeatureFlags
andAWS.Freeform
. Default:AWS.Freeform
. - validators
Sequence[Configuration
Profile Validator Args] - Set of methods for validating the configuration. Maximum of 2. See Validator below for more details.
- application
Id String - Application ID. Must be between 4 and 7 characters in length.
- location
Uri String - URI to locate the configuration. You can specify the AWS AppConfig hosted configuration store, Systems Manager (SSM) document, an SSM Parameter Store parameter, or an Amazon S3 object. For the hosted configuration store, specify
hosted
. For an SSM document, specify either the document name in the formatssm-document://<Document_name>
or the ARN. For a parameter, specify either the parameter name in the formatssm-parameter://<Parameter_name>
or the ARN. For an Amazon S3 object, specify the URI in the following format:s3://<bucket>/<objectKey>
. - description String
- Description of the configuration profile. Can be at most 1024 characters.
- kms
Key StringIdentifier - The identifier for an Key Management Service key to encrypt new configuration data versions in the AppConfig hosted configuration store. This attribute is only used for hosted configuration types. The identifier can be an KMS key ID, alias, or the Amazon Resource Name (ARN) of the key ID or alias.
- name String
- Name for the configuration profile. Must be between 1 and 64 characters in length.
- retrieval
Role StringArn - ARN of an IAM role with permission to access the configuration at the specified
location_uri
. A retrieval role ARN is not required for configurations stored in the AWS AppConfighosted
configuration store. It is required for all other sources that store your configuration. - 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. - type String
- Type of configurations contained in the profile. Valid values:
AWS.AppConfig.FeatureFlags
andAWS.Freeform
. Default:AWS.Freeform
. - validators List<Property Map>
- Set of methods for validating the configuration. Maximum of 2. See Validator below for more details.
Outputs
All input properties are implicitly available as output properties. Additionally, the ConfigurationProfile resource produces the following output properties:
- Arn string
- ARN of the AppConfig Configuration Profile.
- Configuration
Profile stringId - The configuration profile ID.
- Id string
- The provider-assigned unique ID for this managed resource.
- Dictionary<string, string>
- Map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- Arn string
- ARN of the AppConfig Configuration Profile.
- Configuration
Profile stringId - The configuration profile ID.
- Id string
- The provider-assigned unique ID for this managed resource.
- map[string]string
- Map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- arn String
- ARN of the AppConfig Configuration Profile.
- configuration
Profile StringId - The configuration profile ID.
- id String
- The provider-assigned unique ID for this managed resource.
- Map<String,String>
- Map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- arn string
- ARN of the AppConfig Configuration Profile.
- configuration
Profile stringId - The configuration profile ID.
- id string
- The provider-assigned unique ID for this managed resource.
- {[key: string]: string}
- Map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- arn str
- ARN of the AppConfig Configuration Profile.
- configuration_
profile_ strid - The configuration profile ID.
- id str
- The provider-assigned unique ID for this managed resource.
- Mapping[str, str]
- Map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- arn String
- ARN of the AppConfig Configuration Profile.
- configuration
Profile StringId - The configuration profile ID.
- id String
- The provider-assigned unique ID for this managed resource.
- Map<String>
- Map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
Look up Existing ConfigurationProfile Resource
Get an existing ConfigurationProfile 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?: ConfigurationProfileState, opts?: CustomResourceOptions): ConfigurationProfile
@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,
description: Optional[str] = None,
kms_key_identifier: Optional[str] = None,
location_uri: Optional[str] = None,
name: Optional[str] = None,
retrieval_role_arn: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None,
tags_all: Optional[Mapping[str, str]] = None,
type: Optional[str] = None,
validators: Optional[Sequence[ConfigurationProfileValidatorArgs]] = None) -> ConfigurationProfile
func GetConfigurationProfile(ctx *Context, name string, id IDInput, state *ConfigurationProfileState, opts ...ResourceOption) (*ConfigurationProfile, error)
public static ConfigurationProfile Get(string name, Input<string> id, ConfigurationProfileState? state, CustomResourceOptions? opts = null)
public static ConfigurationProfile get(String name, Output<String> id, ConfigurationProfileState 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.
- Application
Id string - Application ID. Must be between 4 and 7 characters in length.
- Arn string
- ARN of the AppConfig Configuration Profile.
- Configuration
Profile stringId - The configuration profile ID.
- Description string
- Description of the configuration profile. Can be at most 1024 characters.
- Kms
Key stringIdentifier - The identifier for an Key Management Service key to encrypt new configuration data versions in the AppConfig hosted configuration store. This attribute is only used for hosted configuration types. The identifier can be an KMS key ID, alias, or the Amazon Resource Name (ARN) of the key ID or alias.
- Location
Uri string - URI to locate the configuration. You can specify the AWS AppConfig hosted configuration store, Systems Manager (SSM) document, an SSM Parameter Store parameter, or an Amazon S3 object. For the hosted configuration store, specify
hosted
. For an SSM document, specify either the document name in the formatssm-document://<Document_name>
or the ARN. For a parameter, specify either the parameter name in the formatssm-parameter://<Parameter_name>
or the ARN. For an Amazon S3 object, specify the URI in the following format:s3://<bucket>/<objectKey>
. - Name string
- Name for the configuration profile. Must be between 1 and 64 characters in length.
- Retrieval
Role stringArn - ARN of an IAM role with permission to access the configuration at the specified
location_uri
. A retrieval role ARN is not required for configurations stored in the AWS AppConfighosted
configuration store. It is required for all other sources that store your configuration. - 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. - Dictionary<string, string>
- Map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block. - Type string
- Type of configurations contained in the profile. Valid values:
AWS.AppConfig.FeatureFlags
andAWS.Freeform
. Default:AWS.Freeform
. - Validators
List<Configuration
Profile Validator> - Set of methods for validating the configuration. Maximum of 2. See Validator below for more details.
- Application
Id string - Application ID. Must be between 4 and 7 characters in length.
- Arn string
- ARN of the AppConfig Configuration Profile.
- Configuration
Profile stringId - The configuration profile ID.
- Description string
- Description of the configuration profile. Can be at most 1024 characters.
- Kms
Key stringIdentifier - The identifier for an Key Management Service key to encrypt new configuration data versions in the AppConfig hosted configuration store. This attribute is only used for hosted configuration types. The identifier can be an KMS key ID, alias, or the Amazon Resource Name (ARN) of the key ID or alias.
- Location
Uri string - URI to locate the configuration. You can specify the AWS AppConfig hosted configuration store, Systems Manager (SSM) document, an SSM Parameter Store parameter, or an Amazon S3 object. For the hosted configuration store, specify
hosted
. For an SSM document, specify either the document name in the formatssm-document://<Document_name>
or the ARN. For a parameter, specify either the parameter name in the formatssm-parameter://<Parameter_name>
or the ARN. For an Amazon S3 object, specify the URI in the following format:s3://<bucket>/<objectKey>
. - Name string
- Name for the configuration profile. Must be between 1 and 64 characters in length.
- Retrieval
Role stringArn - ARN of an IAM role with permission to access the configuration at the specified
location_uri
. A retrieval role ARN is not required for configurations stored in the AWS AppConfighosted
configuration store. It is required for all other sources that store your configuration. - 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. - map[string]string
- Map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block. - Type string
- Type of configurations contained in the profile. Valid values:
AWS.AppConfig.FeatureFlags
andAWS.Freeform
. Default:AWS.Freeform
. - Validators
[]Configuration
Profile Validator Args - Set of methods for validating the configuration. Maximum of 2. See Validator below for more details.
- application
Id String - Application ID. Must be between 4 and 7 characters in length.
- arn String
- ARN of the AppConfig Configuration Profile.
- configuration
Profile StringId - The configuration profile ID.
- description String
- Description of the configuration profile. Can be at most 1024 characters.
- kms
Key StringIdentifier - The identifier for an Key Management Service key to encrypt new configuration data versions in the AppConfig hosted configuration store. This attribute is only used for hosted configuration types. The identifier can be an KMS key ID, alias, or the Amazon Resource Name (ARN) of the key ID or alias.
- location
Uri String - URI to locate the configuration. You can specify the AWS AppConfig hosted configuration store, Systems Manager (SSM) document, an SSM Parameter Store parameter, or an Amazon S3 object. For the hosted configuration store, specify
hosted
. For an SSM document, specify either the document name in the formatssm-document://<Document_name>
or the ARN. For a parameter, specify either the parameter name in the formatssm-parameter://<Parameter_name>
or the ARN. For an Amazon S3 object, specify the URI in the following format:s3://<bucket>/<objectKey>
. - name String
- Name for the configuration profile. Must be between 1 and 64 characters in length.
- retrieval
Role StringArn - ARN of an IAM role with permission to access the configuration at the specified
location_uri
. A retrieval role ARN is not required for configurations stored in the AWS AppConfighosted
configuration store. It is required for all other sources that store your configuration. - 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. - Map<String,String>
- Map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block. - type String
- Type of configurations contained in the profile. Valid values:
AWS.AppConfig.FeatureFlags
andAWS.Freeform
. Default:AWS.Freeform
. - validators
List<Configuration
Profile Validator> - Set of methods for validating the configuration. Maximum of 2. See Validator below for more details.
- application
Id string - Application ID. Must be between 4 and 7 characters in length.
- arn string
- ARN of the AppConfig Configuration Profile.
- configuration
Profile stringId - The configuration profile ID.
- description string
- Description of the configuration profile. Can be at most 1024 characters.
- kms
Key stringIdentifier - The identifier for an Key Management Service key to encrypt new configuration data versions in the AppConfig hosted configuration store. This attribute is only used for hosted configuration types. The identifier can be an KMS key ID, alias, or the Amazon Resource Name (ARN) of the key ID or alias.
- location
Uri string - URI to locate the configuration. You can specify the AWS AppConfig hosted configuration store, Systems Manager (SSM) document, an SSM Parameter Store parameter, or an Amazon S3 object. For the hosted configuration store, specify
hosted
. For an SSM document, specify either the document name in the formatssm-document://<Document_name>
or the ARN. For a parameter, specify either the parameter name in the formatssm-parameter://<Parameter_name>
or the ARN. For an Amazon S3 object, specify the URI in the following format:s3://<bucket>/<objectKey>
. - name string
- Name for the configuration profile. Must be between 1 and 64 characters in length.
- retrieval
Role stringArn - ARN of an IAM role with permission to access the configuration at the specified
location_uri
. A retrieval role ARN is not required for configurations stored in the AWS AppConfighosted
configuration store. It is required for all other sources that store your configuration. - {[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. - {[key: string]: string}
- Map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block. - type string
- Type of configurations contained in the profile. Valid values:
AWS.AppConfig.FeatureFlags
andAWS.Freeform
. Default:AWS.Freeform
. - validators
Configuration
Profile Validator[] - Set of methods for validating the configuration. Maximum of 2. See Validator below for more details.
- application_
id str - Application ID. Must be between 4 and 7 characters in length.
- arn str
- ARN of the AppConfig Configuration Profile.
- configuration_
profile_ strid - The configuration profile ID.
- description str
- Description of the configuration profile. Can be at most 1024 characters.
- kms_
key_ stridentifier - The identifier for an Key Management Service key to encrypt new configuration data versions in the AppConfig hosted configuration store. This attribute is only used for hosted configuration types. The identifier can be an KMS key ID, alias, or the Amazon Resource Name (ARN) of the key ID or alias.
- location_
uri str - URI to locate the configuration. You can specify the AWS AppConfig hosted configuration store, Systems Manager (SSM) document, an SSM Parameter Store parameter, or an Amazon S3 object. For the hosted configuration store, specify
hosted
. For an SSM document, specify either the document name in the formatssm-document://<Document_name>
or the ARN. For a parameter, specify either the parameter name in the formatssm-parameter://<Parameter_name>
or the ARN. For an Amazon S3 object, specify the URI in the following format:s3://<bucket>/<objectKey>
. - name str
- Name for the configuration profile. Must be between 1 and 64 characters in length.
- retrieval_
role_ strarn - ARN of an IAM role with permission to access the configuration at the specified
location_uri
. A retrieval role ARN is not required for configurations stored in the AWS AppConfighosted
configuration store. It is required for all other sources that store your configuration. - 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. - Mapping[str, str]
- Map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block. - type str
- Type of configurations contained in the profile. Valid values:
AWS.AppConfig.FeatureFlags
andAWS.Freeform
. Default:AWS.Freeform
. - validators
Sequence[Configuration
Profile Validator Args] - Set of methods for validating the configuration. Maximum of 2. See Validator below for more details.
- application
Id String - Application ID. Must be between 4 and 7 characters in length.
- arn String
- ARN of the AppConfig Configuration Profile.
- configuration
Profile StringId - The configuration profile ID.
- description String
- Description of the configuration profile. Can be at most 1024 characters.
- kms
Key StringIdentifier - The identifier for an Key Management Service key to encrypt new configuration data versions in the AppConfig hosted configuration store. This attribute is only used for hosted configuration types. The identifier can be an KMS key ID, alias, or the Amazon Resource Name (ARN) of the key ID or alias.
- location
Uri String - URI to locate the configuration. You can specify the AWS AppConfig hosted configuration store, Systems Manager (SSM) document, an SSM Parameter Store parameter, or an Amazon S3 object. For the hosted configuration store, specify
hosted
. For an SSM document, specify either the document name in the formatssm-document://<Document_name>
or the ARN. For a parameter, specify either the parameter name in the formatssm-parameter://<Parameter_name>
or the ARN. For an Amazon S3 object, specify the URI in the following format:s3://<bucket>/<objectKey>
. - name String
- Name for the configuration profile. Must be between 1 and 64 characters in length.
- retrieval
Role StringArn - ARN of an IAM role with permission to access the configuration at the specified
location_uri
. A retrieval role ARN is not required for configurations stored in the AWS AppConfighosted
configuration store. It is required for all other sources that store your configuration. - 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. - Map<String>
- Map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block. - type String
- Type of configurations contained in the profile. Valid values:
AWS.AppConfig.FeatureFlags
andAWS.Freeform
. Default:AWS.Freeform
. - validators List<Property Map>
- Set of methods for validating the configuration. Maximum of 2. See Validator below for more details.
Supporting Types
ConfigurationProfileValidator, ConfigurationProfileValidatorArgs
Import
Using pulumi import
, import AppConfig Configuration Profiles using the configuration profile ID and application ID separated by a colon (:
). For example:
$ pulumi import aws:appconfig/configurationProfile:ConfigurationProfile example 71abcde:11xxxxx
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.
Try AWS Native preview for resources not in the classic version.