terraform/ecc-aws-547-rds_instance_generation/green/provider.tf (18 lines of code) (raw):
terraform {
required_providers {
aws = {
source = "hashicorp/aws"
version = "~> 4"
}
}
}
provider "aws" {
profile = var.profile
region = var.default-region
default_tags {
tags = {
CustodianRule = "ecc-aws-547-rds_instance_generation"
ComplianceStatus = "Green"
}
}
}