It looks like you can now set security group rule descriptions. This is super useful for maintaining whitelists for administrative access.
I can set the description in the AWS console but can't figure out how to set it with Terraform.
My assumption was that if the AWS API allows for it, Terraform can just do it without explicit support for it in the Terraform code. Perhaps that's wishful thinking and we'll have to wait for Terraform to support the new feature, or perhaps I'm just doing it wrong.
I tried simply declaring the description property in the rule declaration (like you would for the description of the security group itself):
ingress {
from_port = 22
to_port = 22
protocol = "tcp"
cidr_blocks = ["123.456.789.123"]
description = "some rule description"
}
Terraform bails in the plan stage with:
aws_security_group.somegroup: ingress.0: invalid or unknown key: description
I also tried setting tags within the rule declaration (like you would for setting the name of the security group):
ingress {
from_port = 22
...
tags {
"Description" = "some rule description"
}
}
Terraform bails in the plan stage with:
aws_security_group.somegroup: ingress.0: invalid or unknown key: tags
As of now, it is possible and your code should be valid.