Skip to content

Commit 1e5273e

Browse files
authored
Update variables.tf
1 parent 51befbe commit 1e5273e

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

variables.tf

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -295,6 +295,21 @@ variable "aws_config_rule" {
295295
}
296296
}
297297

298+
# Define the variable for resource types
299+
variable "resource_types" {
300+
type = list(string)
301+
default = [
302+
"AWS::EC2::Instance",
303+
"AWS::S3::Bucket",
304+
"AWS::IAM::Role",
305+
"AWS::IAM::User",
306+
"AWS::RDS::DBInstance",
307+
"AWS::EC2::VPC",
308+
"AWS::EC2::Subnet",
309+
"AWS::EC2::SecurityGroup"
310+
]
311+
}
312+
298313
variable "az_number" {
299314
description = "Assign a number to each AZ letter used in secondary cidr/subnets configuration"
300315
default = {

0 commit comments

Comments
 (0)