I hope somebody can help. I’ pretty new to Terraform and trying to write custom modules instead of typing every single resource.
Unfortunately I got stuck somehow.
The module should create multiple security groups with multiple rules and ingress-sources assigned to it.
I’m calling the module as follows:
module "secgroups" {
source = "../../modules/secgroup"
groups = {
ssh = {
description = "Security Group for SSH"
sources = [ "sg-mgmt-web", "sg-mgmt-ntp" ]
ports = [ "22" ]
}
web = {
description = "Security Group for HTTP(S)"
sources = [ "sg-mgmt-ssh", "sg-mgmt-ntp" ]
ports = [ "80", "443" ]
}
ntp = {
description = "Security Group for HTTP(S)"
sources = [ "sg-mgmt-ssh", "sg-mgmt-web" ]
ports = [ "151" ]
}
}
}
I’ve already simplified it because typically I would use rules instead of ports and use a map with multplie key/value pairs. But I need to get to the next step.
My first step is to create the security groups: (that was simple)
I think we need you to share some more details about what you’re trying to achieve. In particular, the proposed input:
has short names like ssh for the groups, but internally prepends a sg-mgmt- prefix, but then the user of the module needs to know about that when they fill in the sources? That seems confusing.
Is it a valid assumption that all sources will be security groups defined by the same module?
I left out the description as I only need it for the first module.
Is it a valid assumption that all sources will be security groups defined by the same module?
yes, that’s correct. That’s why it is important that the secgroups are created first and then rules are attached to it.
has short names like ssh for the groups, but internally prepends a sg-mgmt- prefix, but then the user of the module needs to know about that when they fill in the sources? That seems confusing.
you’re right, as the naming convention will stay the same the short name could always be used. Prefix “sg-mgmt-” can be added later