Provides access to all Configuration Properties for an AppConfig Application. This will allow you to pass Configuration Profile IDs to another resource.
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
}
The following arguments are required:
application_id
- (Required) ID of the AppConfig Application.This data source exports the following attributes in addition to the arguments above:
configuration_profile_ids
- Set of Configuration Profile IDs associated with the AppConfig Application.