Resource: aws_servicecatalogappregistry_application

Terraform resource for managing an AWS Service Catalog AppRegistry Application.

Example Usage

Basic Usage

resource "aws_servicecatalogappregistry_application" "example" {
  name = "example-app"
}

Connecting Resources

resource "aws_servicecatalogappregistry_application" "example" {
  name = "example-app"
}

resource "aws_s3_bucket" "bucket" {
  bucket = "example-bucket"

  tags = aws_servicecatalogappregistry_application.example.application_tag
}

Argument Reference

The following arguments are required:

The following arguments are optional:

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 Service Catalog AppRegistry Application using the id. For example:

import {
  to = aws_servicecatalogappregistry_application.example
  id = "application-id-12345678"
}

Using terraform import, import AWS Service Catalog AppRegistry Application using the id. For example:

% terraform import aws_servicecatalogappregistry_application.example application-id-12345678