We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent af619c9 commit 6fbfdcaCopy full SHA for 6fbfdca
variables.tf
@@ -294,6 +294,15 @@ locals {
294
source_security_group_id = aws_security_group.this["elk"].id
295
security_group_id = aws_security_group.this["ec2"].id
296
},
297
+ ec2_http_in_ec2 = {
298
+ type = "ingress"
299
+ description = "Allow all inbound traffic from ec2 on http port"
300
+ from_port = 80
301
+ to_port = 80
302
+ protocol = "tcp"
303
+ source_security_group_id = aws_security_group.this["ec2"].id
304
+ security_group_id = aws_security_group.this["ec2"].id
305
+ },
306
ec2_http_in_inner = {
307
type = "ingress"
308
description = "Allow all inbound traffic from the load balancer on http port"
0 commit comments