Skip to content
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

Support Config retention & frequency configuration #3

Merged
merged 1 commit into from
Feb 5, 2024
Merged
Show file tree
Hide file tree
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
43 changes: 43 additions & 0 deletions config_baselines.tf
Original file line number Diff line number Diff line change
Expand Up @@ -657,3 +657,46 @@ resource "aws_config_configuration_aggregator" "organization" {
tags = var.tags
}



### Provision Config recorder attributes not supported by provider yet:
# recorder frequency (https://github.com/hashicorp/terraform-provider-aws/pull/35527)
# Config retention (https://github.com/hashicorp/terraform-provider-aws/issues/13305)
resource "terraform_data" "recorder_tuning" {
count = var.config_baseline_enabled && var.config_tuning_enabled ? 1 : 0

triggers_replace = concat(
module.config_baseline_ap-northeast-1[*].configuration_recorder,
module.config_baseline_ap-northeast-2[*].configuration_recorder,
module.config_baseline_ap-northeast-3[*].configuration_recorder,
module.config_baseline_ap-south-1[*].configuration_recorder,
module.config_baseline_ap-southeast-1[*].configuration_recorder,
module.config_baseline_ap-southeast-2[*].configuration_recorder,
module.config_baseline_ca-central-1[*].configuration_recorder,
module.config_baseline_eu-central-1[*].configuration_recorder,
module.config_baseline_eu-north-1[*].configuration_recorder,
module.config_baseline_eu-west-1[*].configuration_recorder,
module.config_baseline_eu-west-2[*].configuration_recorder,
module.config_baseline_eu-west-3[*].configuration_recorder,
module.config_baseline_sa-east-1[*].configuration_recorder,
module.config_baseline_us-east-1[*].configuration_recorder,
module.config_baseline_us-east-2[*].configuration_recorder,
module.config_baseline_us-west-1[*].configuration_recorder,
module.config_baseline_us-west-2[*].configuration_recorder,
[
var.config_continuous_recording,
var.config_retention_days
],
)

provisioner "local-exec" {
command = "${path.module}/resources/config_recorder.py"
interpreter = ["python3"]
environment = {
CONFIG_RECORDER_FREQUENCY = var.config_continuous_recording ? "CONTINUOUS" : "DAILY"
CONFIG_RECORDER_RETENTION = var.config_retention_days
CONFIG_REGIONS = join(",", var.target_regions)
TF_AWS_ROLE = data.aws_iam_session_context.current.issuer_arn
}
}
}
3 changes: 3 additions & 0 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,9 @@ terraform {
}

data "aws_caller_identity" "current" {}
data "aws_iam_session_context" "current" {
arn = data.aws_caller_identity.current.arn
}

locals {
is_individual_account = var.account_type == "individual"
Expand Down
45 changes: 45 additions & 0 deletions resources/config_recorder.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
#!/usr/bin/python3

import boto3
import os

frequency = os.environ["CONFIG_RECORDER_FREQUENCY"]
retention = int(os.getenv("CONFIG_RECORDER_RETENTION", "0"))
role_arn = os.environ["TF_AWS_ROLE"]
target_regions = os.environ["CONFIG_REGIONS"].split(",")

# assume terraform role
sts_client = boto3.client("sts")
print(f"Assuming AWS role {role_arn}")
assumed = sts_client.assume_role(
RoleArn=role_arn,
RoleSessionName="TerragruntConfigurationRecorderProvisioner",
)["Credentials"]

for region in target_regions:
# setup AWS Config connection
config = boto3.client(
"config",
aws_access_key_id=assumed["AccessKeyId"],
aws_secret_access_key=assumed["SecretAccessKey"],
aws_session_token=assumed["SessionToken"],
region_name=region,
)

recorder = config.describe_configuration_recorders()["ConfigurationRecorders"][0]
recordingMode = recorder.get("recordingMode", {})
if recordingMode.get("recordingFrequency") != frequency:
print(f"Setting {region} Config recorder frequency to {frequency}")
recordingMode["recordingFrequency"] = frequency
recorder["recordingMode"] = recordingMode
config.put_configuration_recorder(ConfigurationRecorder=recorder)

if retention:
current_retention = config.describe_retention_configurations()[
"RetentionConfigurations"
]
if current_retention != [
{"Name": recorder["name"], "RetentionPeriodInDays": retention}
]:
print(f"Setting {region} Config retention to {retention} days")
config.put_retention_configuration(RetentionPeriodInDays=retention)
18 changes: 18 additions & 0 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -289,6 +289,24 @@ variable "config_s3_bucket_key_prefix" {
default = "config"
}

variable "config_tuning_enabled" {
description = "Tune AWS Config frequency & retention using Python local provisioner."
type = bool
default = false
}

variable "config_retention_days" {
description = "AWS Config retention in days. 0 disables setting retention."
type = number
default = 0
}

variable "config_continuous_recording" {
description = "Enable CONTINUOUS Config recorder mode (as opposed to DAILY)"
type = bool
default = true
}

variable "config_sns_topic_name" {
description = "The name of the SNS Topic to be used to notify configuration changes."
type = string
Expand Down