Skip to content

Commit

Permalink
fix docs
Browse files Browse the repository at this point in the history
  • Loading branch information
badra001 committed Oct 27, 2021
1 parent cc8916c commit beeb7a9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions custom/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ module "mysg" {
vpc_id = var.vpc_id
name = "mysg"
description = "Security group for my"
short = "MY"
short_description = "MY"
ingress_port_list = [
[8080, 8080, "tcp", "http", ["0.0.0.0/0"]],
[8443, 8443, "tcp", "https", ["0.0.0.0/0"]],
Expand All @@ -47,7 +47,7 @@ module "mysg" {
vpc_id = var.vpc_id
name = "mysg"
description = "Security group for my"
short = "MY"
short_description = "MY"
ingress_port_map = [
{
from = 8080
Expand Down
4 changes: 2 additions & 2 deletions custom/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
* vpc_id = var.vpc_id
* name = "mysg"
* description = "Security group for my"
* short = "MY"
* short_description = "MY"
* ingress_port_list = [
* [8080, 8080, "tcp", "http", ["0.0.0.0/0"]],
* [8443, 8443, "tcp", "https", ["0.0.0.0/0"]],
Expand All @@ -48,7 +48,7 @@
* vpc_id = var.vpc_id
* name = "mysg"
* description = "Security group for my"
* short = "MY"
* short_description = "MY"
* ingress_port_map = [
* {
* from = 8080
Expand Down

0 comments on commit beeb7a9

Please sign in to comment.