Data Source: aws_serverlessapplicationrepository_application

Use this data source to get information about an AWS Serverless Application Repository application. For example, this can be used to determine the required capabilities for an application.

Example Usage

data "aws_serverlessapplicationrepository_application" "example" {
  application_id = "arn:aws:serverlessrepo:us-east-1:123456789012:applications/ExampleApplication"
}

resource "aws_serverlessapplicationrepository_cloudformation_stack" "example" {
  name             = "Example"
  application_id   = data.aws_serverlessapplicationrepository_application.example.application_id
  semantic_version = data.aws_serverlessapplicationrepository_application.example.semantic_version
  capabilities     = data.aws_serverlessapplicationrepository_application.example.required_capabilities
}

Argument Reference

Attribute Reference

This data source exports the following attributes in addition to the arguments above: