-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
19b2d71
commit bb5a855
Showing
15 changed files
with
88 additions
and
58 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,25 @@ | ||
output "this_security_group_id" { | ||
description = "The ID of the security group" | ||
value = "${module.complete_sg.this_security_group_id}" | ||
value = module.complete_sg.this_security_group_id | ||
} | ||
|
||
output "this_security_group_vpc_id" { | ||
description = "The VPC ID" | ||
value = "${module.complete_sg.this_security_group_vpc_id}" | ||
value = module.complete_sg.this_security_group_vpc_id | ||
} | ||
|
||
output "this_security_group_owner_id" { | ||
description = "The owner ID" | ||
value = "${module.complete_sg.this_security_group_owner_id}" | ||
value = module.complete_sg.this_security_group_owner_id | ||
} | ||
|
||
output "this_security_group_name" { | ||
description = "The name of the security group" | ||
value = "${module.complete_sg.this_security_group_name}" | ||
value = module.complete_sg.this_security_group_name | ||
} | ||
|
||
output "this_security_group_description" { | ||
description = "The description of the security group" | ||
value = "${module.complete_sg.this_security_group_description}" | ||
value = module.complete_sg.this_security_group_description | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
|
||
terraform { | ||
required_version = ">= 0.12" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,25 @@ | ||
output "this_security_group_id" { | ||
description = "The ID of the security group" | ||
value = "${module.mysql_sg.this_security_group_id}" | ||
value = module.mysql_sg.this_security_group_id | ||
} | ||
|
||
output "this_security_group_vpc_id" { | ||
description = "The VPC ID" | ||
value = "${module.mysql_sg.this_security_group_vpc_id}" | ||
value = module.mysql_sg.this_security_group_vpc_id | ||
} | ||
|
||
output "this_security_group_owner_id" { | ||
description = "The owner ID" | ||
value = "${module.mysql_sg.this_security_group_owner_id}" | ||
value = module.mysql_sg.this_security_group_owner_id | ||
} | ||
|
||
output "this_security_group_name" { | ||
description = "The name of the security group" | ||
value = "${module.mysql_sg.this_security_group_name}" | ||
value = module.mysql_sg.this_security_group_name | ||
} | ||
|
||
output "this_security_group_description" { | ||
description = "The description of the security group" | ||
value = "${module.mysql_sg.this_security_group_description}" | ||
value = module.mysql_sg.this_security_group_description | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
|
||
terraform { | ||
required_version = ">= 0.12" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
output "this_security_group_id" { | ||
description = "The ID of the security group" | ||
value = "${module.complete_sg_disabled.this_security_group_id}" | ||
value = module.complete_sg_disabled.this_security_group_id | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
|
||
terraform { | ||
required_version = ">= 0.12" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,25 @@ | ||
output "this_security_group_id" { | ||
description = "The ID of the security group" | ||
value = "${module.http_sg.this_security_group_id}" | ||
value = module.http_sg.this_security_group_id | ||
} | ||
|
||
output "this_security_group_vpc_id" { | ||
description = "The VPC ID" | ||
value = "${module.http_sg.this_security_group_vpc_id}" | ||
value = module.http_sg.this_security_group_vpc_id | ||
} | ||
|
||
output "this_security_group_owner_id" { | ||
description = "The owner ID" | ||
value = "${module.http_sg.this_security_group_owner_id}" | ||
value = module.http_sg.this_security_group_owner_id | ||
} | ||
|
||
output "this_security_group_name" { | ||
description = "The name of the security group" | ||
value = "${module.http_sg.this_security_group_name}" | ||
value = module.http_sg.this_security_group_name | ||
} | ||
|
||
output "this_security_group_description" { | ||
description = "The description of the security group" | ||
value = "${module.http_sg.this_security_group_description}" | ||
value = module.http_sg.this_security_group_description | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
|
||
terraform { | ||
required_version = ">= 0.12" | ||
} |
Oops, something went wrong.