Resource: aws_appconfig_application

Provides an AppConfig Application resource.

Example Usage

resource "aws_appconfig_application" "example" {
  name        = "example-application-tf"
  description = "Example AppConfig Application"

  tags = {
    Type = "AppConfig Application"
  }
}

Argument Reference

This resource supports the following arguments:

Attribute Reference

This resource exports the following attributes in addition to the arguments above:

Import

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