Skip to content

Commit

Permalink
format fix
Browse files Browse the repository at this point in the history
  • Loading branch information
adamacosta committed Dec 19, 2023
1 parent d8164c5 commit 1020de3
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions examples/public-lb/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ data "cloudinit_config" "bastion" {
filename = "00_init.sh"
content_type = "text/x-shellscript"
# required to use sshuttle for ssh tunneling
content = <<EOF
content = <<EOF
#!/bin/sh
dnf install -y python3
EOF
Expand Down Expand Up @@ -77,10 +77,10 @@ resource "aws_security_group" "bastion" {
resource "aws_security_group_rule" "ssh" {
description = "Allow ssh from Internet"

from_port = 22
to_port = 22
protocol = "tcp"
cidr_blocks = ["0.0.0.0/0"]
from_port = 22
to_port = 22
protocol = "tcp"
cidr_blocks = ["0.0.0.0/0"]
ipv6_cidr_blocks = ["::/0"]
security_group_id = aws_security_group.bastion.id
type = "ingress"
Expand Down

0 comments on commit 1020de3

Please sign in to comment.