16 lines
518 B
HCL
16 lines
518 B
HCL
/*
|
|
Deploy aws config service. If it is already enabled in the account, import existing
|
|
config record with
|
|
▶ terraform import module.aws-config-module.aws_config_configuration_recorder.config-recorder default
|
|
|
|
*/
|
|
|
|
module aws-config-module {
|
|
source = "../../../modules/security_identity_compliance/aws_config"
|
|
application = var.application
|
|
environment = var.environment
|
|
customer-name = var.customer-name
|
|
project = var.project
|
|
aws-region-short = var.aws-region-short
|
|
default-tags = local.default-tags
|
|
} |