Provides an AppConfig Application resource.
resource "aws_appconfig_application" "example" {
name = "example-application-tf"
description = "Example AppConfig Application"
tags = {
Type = "AppConfig Application"
}
}
This resource supports the following arguments:
name
- (Required) Name for the application. Must be between 1 and 64 characters in length.description
- (Optional) Description of the application. Can be at most 1024 characters.tags
- (Optional) 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.This resource exports the following attributes in addition to the arguments above:
arn
- ARN of the AppConfig Application.id
- AppConfig application ID.tags_all
- Map of tags assigned to the resource, including those inherited from the provider default_tags
configuration block.In Terraform v1.5.0 and later, use an import
block to import AppConfig Applications using their application ID. For example:
import {
to = aws_appconfig_application.example
id = "71rxuzt"
}
Using terraform import
, import AppConfig Applications using their application ID. For example:
% terraform import aws_appconfig_application.example 71rxuzt