-
Notifications
You must be signed in to change notification settings - Fork 9.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Provide support for security group rules description. #1940
Comments
Hi @ssala7, This was already added and has been released in 1.1.0 🚀 Closing! :) |
Hi, is this only available in v1.1.0? |
Hi @takeda-joao Indeed, only in the 1.1.0 of the AWS Provider, which is different from the 0.10.8 of Terraform. Tell us how it goes :) |
Hi, how do i get release 1.1.0? |
I guess I need to build it. |
You don't need to build it: just remove the |
oh, ok. |
It worked. But I am getting an error when I try to apply again (with no updates to be applied).
|
I'm going to lock this issue because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues. If you feel this issue should be reopened, we encourage creating a new issue linking back to this one for added context. Thanks! |
This issue was originally opened by @ssala7 as hashicorp/terraform#16372. It was migrated here as a result of the provider split. The original body of the issue is below.
#https://www.terraform.io/docs/providers/aws/d/security_group.html
Add a description/comment for ingress and egress rules.
Example:
resource "aws_security_group" "my_sg" {
name = "my_sg"
description = "my_sg"
vpc_id = "vpc-xxxxxxx"
ingress {
from_port = 443
to_port = 443
protocol = "tcp"
cidr_blocks = ["0.0.0.0/0"]
description = "Open to internet"
}
The text was updated successfully, but these errors were encountered: