Add required description attribute to aws_security_group example.
This commit is contained in:
parent
cc31db0389
commit
1420e261d7
|
@ -13,6 +13,8 @@ Provides an security group resource.
|
||||||
```
|
```
|
||||||
resource "aws_security_group" "allow_all" {
|
resource "aws_security_group" "allow_all" {
|
||||||
name = "allow_all"
|
name = "allow_all"
|
||||||
|
description = "Allow all inbound traffic"
|
||||||
|
|
||||||
ingress {
|
ingress {
|
||||||
from_port = 0
|
from_port = 0
|
||||||
to_port = 65535
|
to_port = 65535
|
||||||
|
|
Loading…
Reference in New Issue