Resource: aws_config_aggregate_authorization

Manages an AWS Config Aggregate Authorization

Example Usage

resource "aws_config_aggregate_authorization" "example" {
  account_id = "123456789012"
  region     = "eu-west-2"
}

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 Config aggregate authorizations using account_id:region. For example:

import {
  to = aws_config_aggregate_authorization.example
  id = "123456789012:us-east-1"
}

Using terraform import, import Config aggregate authorizations using account_id:region. For example:

% terraform import aws_config_aggregate_authorization.example 123456789012:us-east-1