大まかな流れは、まおーさんの情報を参考にしてやってみました。 https://zenn.dev/yakumo/articles/c8f1b7bd8398414286a15da1cbcbe517
かつあい
大まかな流れは、まおーさんの情報を参考にしてやってみました。 https://zenn.dev/yakumo/articles/c8f1b7bd8398414286a15da1cbcbe517
かつあい
| module "security_group_rules_with_port_range" { | |
| source = "./modules/security_group_rules" | |
| security_group_id = "sg-XXXXXXXX" | |
| description = "Windows Active Directory ports" | |
| type = "ingress" | |
| self = true | |
| rules = [ | |
| # DNS | |
| { protocol = "udp", port = "53" }, | |
| { protocol = "tcp", port = "53" }, |