aws_config_configuration_recorder
Provides an AWS Config Configuration Recorder. Please note that this resource does not start the created recorder automatically.
Note: Starting the Configuration Recorder requires a delivery channel (while delivery channel creation requires Configuration Recorder). This is why
aws_config_configuration_recorder_status
is a separate resource.
Example Usage
resource "aws_config_configuration_recorder" "foo" { name = "example" role_arn = "${aws_iam_role.r.arn}" } resource "aws_iam_role" "r" { name = "awsconfig-example" assume_role_policy = <<POLICY { "Version": "2012-10-17", "Statement": [ { "Action": "sts:AssumeRole", "Principal": { "Service": "config.amazonaws.com" }, "Effect": "Allow", "Sid": "" } ] } POLICY }
Argument Reference
The following arguments are supported:
-
name
- (Optional) The name of the recorder. Defaults todefault
. Changing it recreates the resource. -
role_arn
- (Required) Amazon Resource Name (ARN) of the IAM role. used to make read or write requests to the delivery channel and to describe the AWS resources associated with the account. See AWS Docs for more details. -
recording_group
- (Optional) Recording group - see below.
recording_group
-
all_supported
- (Optional) Specifies whether AWS Config records configuration changes for every supported type of regional resource (which includes any new type that will become supported in the future). Conflicts withresource_types
. Defaults totrue
. -
include_global_resource_types
- (Optional) Specifies whether AWS Config includes all supported types of global resources with the resources that it records. Requiresall_supported = true
. Conflicts withresource_types
. -
resource_types
- (Optional) A list that specifies the types of AWS resources for which AWS Config records configuration changes (for example,AWS::EC2::Instance
orAWS::CloudTrail::Trail
). See relevant part of AWS Docs for available types.
Attributes Reference
In addition to all arguments above, the following attributes are exported:
-
id
- Name of the recorder
Import
Configuration Recorder can be imported using the name, e.g.
$ terraform import aws_config_configuration_recorder.foo example
© 2018 HashiCorpLicensed under the MPL 2.0 License.
https://www.terraform.io/docs/providers/aws/r/config_configuration_recorder.html