sg rule add

This commit is contained in:
2022-12-28 22:50:49 +09:00
parent 0b1946ecb3
commit 6fab570c69
6 changed files with 80 additions and 16 deletions

View File

@ -6,3 +6,23 @@ variable "from_port" {
description = "from port"
type = number
}
variable "to_port" {
description = "to_port"
type = number
}
variable "protocol" {
description = "protocol"
type = string
}
variable "cidr_blocks" {
description = "cidr_blocks"
type = list(string)
}
variable "security_group_id" {
}
variable "tag_name" {
description = "tag_name"
type = string
}