Data Source: aws_appconfig_configuration_profiles

Provides access to all Configuration Properties for an AppConfig Application. This will allow you to pass Configuration Profile IDs to another resource.

Example Usage

Basic Usage

data "aws_appconfig_configuration_profiles" "example" {
  application_id = "a1d3rpe"
}

data "aws_appconfig_configuration_profile" "example" {
  for_each                 = data.aws_appconfig_configuration_profiles.example.configuration_profile_ids
  configuration_profile_id = each.value
  application_id           = aws_appconfig_application.example.id
}

Argument Reference

The following arguments are required:

Attribute Reference

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