Skip to content

update docs for debug_log_delivery_accounts attribute of aws_config_o… #43385

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -45,29 +45,29 @@ resource "aws_config_organization_custom_policy_rule" "example" {

The following arguments are required:

* `name` - (Required) name of the rule
* `policy_text` - (Required) policy definition containing the logic for your organization AWS Config Custom Policy rule
* `policy_runtime` - (Required) runtime system for your organization AWS Config Custom Policy rules
* `trigger_types` - (Required) List of notification types that trigger AWS Config to run an evaluation for the rule. Valid values: `ConfigurationItemChangeNotification`, `OversizedConfigurationItemChangeNotification`
* `name` - (Required) Name of the rule.
* `policy_text` - (Required) Policy definition containing the rule logic.
* `policy_runtime` - (Required) Runtime system for policy rules.
* `trigger_types` - (Required) List of notification types that trigger AWS Config to run an evaluation for the rule. Valid values: `ConfigurationItemChangeNotification`, `OversizedConfigurationItemChangeNotification`.

The following arguments are optional:

* `region` - (Optional) Region where this resource will be [managed](https://docs.aws.amazon.com/general/latest/gr/rande.html#regional-endpoints). Defaults to the Region set in the [provider configuration](https://registry.terraform.io/providers/hashicorp/aws/latest/docs#aws-configuration-reference).
* `description` - (Optional) Description of the rule
* `debug_log_delivery_accounts` - (Optional) List of AWS account identifiers to exclude from the rule
* `excluded_accounts` - (Optional) List of AWS account identifiers to exclude from the rule
* `input_parameters` - (Optional) A string in JSON format that is passed to the AWS Config Rule Lambda Function
* `description` - (Optional) Description of the rule.
* `debug_log_delivery_accounts` - (Optional) List of accounts that you can enable debug logging for. The list is null when debug logging is enabled for all accounts.
* `excluded_accounts` - (Optional) List of AWS account identifiers to exclude from the rule.
* `input_parameters` - (Optional) A string in JSON format that is passed to the AWS Config Rule Lambda Function.
* `maximum_execution_frequency` - (Optional) Maximum frequency with which AWS Config runs evaluations for a rule, if the rule is triggered at a periodic frequency. Defaults to `TwentyFour_Hours` for periodic frequency triggered rules. Valid values: `One_Hour`, `Three_Hours`, `Six_Hours`, `Twelve_Hours`, or `TwentyFour_Hours`.
* `resource_id_scope` - (Optional) Identifier of the AWS resource to evaluate
* `resource_types_scope` - (Optional) List of types of AWS resources to evaluate
* `tag_key_scope` - (Optional, Required if `tag_value_scope` is configured) Tag key of AWS resources to evaluate
* `tag_value_scope` - (Optional) Tag value of AWS resources to evaluate
* `resource_id_scope` - (Optional) Identifier of the AWS resource to evaluate.
* `resource_types_scope` - (Optional) List of types of AWS resources to evaluate.
* `tag_key_scope` - (Optional, Required if `tag_value_scope` is configured) Tag key of AWS resources to evaluate.
* `tag_value_scope` - (Optional) Tag value of AWS resources to evaluate.

## Attribute Reference

This resource exports the following attributes in addition to the arguments above:

* `arn` - Amazon Resource Name (ARN) of the rule
* `arn` - Amazon Resource Name (ARN) of the rule.

## Timeouts

Expand Down
Loading