Skip to content

Commit 31ea933

Browse files
committed
feat: use ssh_user for ssh
1 parent caa6a3b commit 31ea933

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ If you choose to opt for automated method you must first SSH into your Ansible c
220220

221221
.. code-block:: console
222222
223-
ssh $(terraform output -raw ansible_user)@$(terraform output -raw ansible_control_access_ip_v4)
223+
ssh $(terraform output -raw ssh_user)@$(terraform output -raw ansible_control_access_ip_v4)
224224
~/deploy-openstack.sh
225225
226226
This script will go through the process of performing the following tasks

outputs.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ output "seed_access_ip_v4" {
66
value = openstack_compute_instance_v2.seed.access_ip_v4
77
}
88

9-
output "ansible_user" {
9+
output "ssh_user" {
1010
value = var.ssh_user
1111
}
1212

0 commit comments

Comments
 (0)