Skip to content

Commit

Permalink
update example outputs (#52)
Browse files Browse the repository at this point in the history
Signed-off-by: Marques Johansson <[email protected]>
  • Loading branch information
displague authored Jan 19, 2021
1 parent 90766f1 commit e831c55
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 12 deletions.
31 changes: 21 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -130,21 +130,32 @@ terraform output
Sample output as follows:

```
Cloud_ID_Tag = 2dd4409b
Compute_ARM_IPs = []
Compute_ARM_Type = []
Cloud_ID_Tag = "5077f6895d12fce0"
Compute_ARM_IPs = [
"139.178.89.34",
]
Compute_ARM_Type = [
"c2.large.arm",
]
Compute_x86_IPs = [
"147.75.65.85",
"147.75.70.59",
]
Compute_x86_Type = [
"n2.xlarge.x86",
]
Controller_SSH = ssh [email protected] -i ./packet-key
Controller_Type = c2.medium.x86
Horizon_dashboard_via_IP = http://147.75.64.78/horizon/ username/password
```

The OpenStack Horizon dashboard can be pulled up at the URL listed with the username/password provided.
Controller_Provider_Private_IPv4 = "10.88.70.16/28"
Controller_Provider_Public_IPv6 = "2604:1380:1000:7c01::/64"
Controller_SSH = "ssh [email protected] -i metal-key"
Controller_SSH6 = "ssh root@2604:1380:1000:7c00::7 -i metal-key"
Controller_Type = "c2.medium.x86"
Horizon_dashboard_via_IP = "http://147.75.109.135/horizon/ default/admin/GgT0VzyrX6Jm9Hd9"
Horizon_dashboard_via_IP6 = "http://[2604:1380:1000:7c00::3]/horizon/ default/admin/GgT0VzyrX6Jm9Hd9"
OpenStack_API_Endpoint = "http://147.75.70.123:5000/v3"
OpenStack_API_Endpoint_ipv6 = "http://[2604:1380:1000:7c00::7]:5000/v3"
OpenStack_admin_pass = <sensitive>
```

The OpenStack Horizon dashboard can be pulled up at the URL listed with the domain/username/password provided.
The OpenStack Controller (CLI) can be accessed at the SSH address listed with the key provided.

## Sample Workload
Expand Down
4 changes: 2 additions & 2 deletions outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -46,12 +46,12 @@ output "OpenStack_admin_pass" {

output "Horizon_dashboard_via_IP" {
description = "Access OpenStack Dashboard over IPv4"
value = "http://${metal_device.dashboard.access_public_ipv4}/horizon/ admin/${random_password.os_admin_password.result}"
value = "http://${metal_device.dashboard.access_public_ipv4}/horizon/ default/admin/${random_password.os_admin_password.result}"
}

output "Horizon_dashboard_via_IP6" {
description = "Access OpenStack Dashboard over IPv6"
value = "http://[${metal_device.dashboard.access_public_ipv6}]/horizon/ admin/${random_password.os_admin_password.result}"
value = "http://[${metal_device.dashboard.access_public_ipv6}]/horizon/ default/admin/${random_password.os_admin_password.result}"
}

output "Controller_SSH" {
Expand Down

0 comments on commit e831c55

Please sign in to comment.