opentofu/examples/aws-rds/sg-variables.tf
Sathiya Shunmugasundaram 22c42c4687 new lines
2015-06-11 10:07:18 -04:00

11 lines
163 B
HCL

variable "cidr_blocks" {
default = "0.0.0.0/0"
description = "CIDR for sg"
}
variable "sg_name" {
default = "rds_sg"
description = "Tag Name for sg"
}