Skip to content

Commit 874fbed

Browse files
committed
fix: typo in echo
1 parent 5d97ffd commit 874fbed

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

aws_ec2_instance/bastion_inject/bastion_provision.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ resource "null_resource" "bastion_ssh_configure" {
9898
echo 'Removing Root SSH Login for Bastion from Public IP'
9999
sed -i 's/PermitRootLogin yes/PermitRootLogin no/' /etc/ssh/sshd_config
100100
sed -i 's/#PermitRootLogin/PermitRootLogin/' /etc/ssh/sshd_config
101-
echo 'Allow SSH Login to root user only from the Bastion's private Subnet range (i.e. no root login using Public IP)'
101+
echo 'Allow SSH Login to root user only from the Bastion private Subnet range (i.e. no root login using Public IP)'
102102
echo 'Match Address ${data.aws_subnet.vpc_subnet.cidr_block}' >> /etc/ssh/sshd_config
103103
echo 'PermitRootLogin yes' >> /etc/ssh/sshd_config
104104

gcp_ce_vm/bastion_inject/bastion_provision.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ resource "null_resource" "bastion_ssh_configure" {
8080
echo 'Removing Root SSH Login for Bastion from Public IP'
8181
sed -i 's/PermitRootLogin yes/PermitRootLogin no/' /etc/ssh/sshd_config
8282
sed -i 's/#PermitRootLogin/PermitRootLogin/' /etc/ssh/sshd_config
83-
echo 'Allow SSH Login to root user only from the Bastion's private Subnet range (i.e. no root login using Public IP)'
83+
echo 'Allow SSH Login to root user only from the Bastion private Subnet range (i.e. no root login using Public IP)'
8484
echo 'Match Address ${local.target_vpc_subnet_range}' >> /etc/ssh/sshd_config
8585
echo 'PermitRootLogin yes' >> /etc/ssh/sshd_config
8686

ibmcloud_vs/bastion_inject/bastion_provision.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ resource "null_resource" "bastion_ssh_configure" {
112112
echo 'Removing Root SSH Login for Bastion from Public IP'
113113
sed -i 's/PermitRootLogin yes/PermitRootLogin no/' /etc/ssh/sshd_config
114114
sed -i 's/#PermitRootLogin/PermitRootLogin/' /etc/ssh/sshd_config
115-
echo 'Allow SSH Login to root user only from the Bastion's private Subnet range (i.e. no root login using Public IP)'
115+
echo 'Allow SSH Login to root user only from the Bastion private Subnet range (i.e. no root login using Public IP)'
116116
echo 'Match Address ${data.ibm_is_subnet.vpc_subnet.ipv4_cidr_block}' >> /etc/ssh/sshd_config
117117
echo 'PermitRootLogin yes' >> /etc/ssh/sshd_config
118118

msazure_vm/bastion_inject/bastion_provision.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ resource "null_resource" "bastion_setup" {
157157
echo 'Removing Root SSH Login for Bastion from Public IP'
158158
sed -i 's/PermitRootLogin yes/PermitRootLogin no/' /etc/ssh/sshd_config
159159
sed -i 's/#PermitRootLogin/PermitRootLogin/' /etc/ssh/sshd_config
160-
echo 'Allow SSH Login to root user only from the Bastion's private Subnet range (i.e. no root login using Public IP)'
160+
echo 'Allow SSH Login to root user only from the Bastion private Subnet range (i.e. no root login using Public IP)'
161161
echo 'Match Address ${local.target_vnet_subnet_range}' >> /etc/ssh/sshd_config
162162
echo 'PermitRootLogin yes' >> /etc/ssh/sshd_config
163163

0 commit comments

Comments
 (0)