Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions ansible/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,3 +70,15 @@ Welcome to Ubuntu 24.04.4 LTS (GNU/Linux 6.8.0-101-generic x86_64)
[...]
ubuntu@cleura-cloud-launch-pad-ramp:~$
```

## Tearing down a Launch Pad

In the event that you built a Launch Pad for testing purposes only, **and you have not launched any other cloud resources in your environment,** you might want to tear it down.
To do so, issue the following command:

```console
$ ansible-playbook teardown.yaml
[...]
PLAY RECAP *******************************************************************************************************
localhost : ok=8 changed=8 unreachable=0 failed=0 skipped=15 rescued=0 ignored=0
```
13 changes: 13 additions & 0 deletions heat/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,3 +72,16 @@ Welcome to Ubuntu 24.04.4 LTS (GNU/Linux 6.8.0-101-generic x86_64)
[...]
ubuntu@cleura-cloud-launch-pad-bastion:~$
```

## Tearing down a Launch Pad

In the event that you built a Launch Pad for testing purposes only, **and you have not launched any other cloud resources in your environment,** you might want to tear it down.
To do so, issue the following command:

```console
$ openstack stack delete cleura-cloud-launch-pad

Are you sure you want to delete this stack(s) [y/N]? y
```

At the prompt, type `y` followed by the `Enter` key.
26 changes: 25 additions & 1 deletion tf/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ Building your Launch Pad should take just a few minutes.
Once `tofu apply` has completed, you can use the `tofu state show` command to show your Pad Ramp's public ("floating") IP address:

```console
$ tofu state show openstack_networking_floatingip_v2.floating_ip
$ tofu state show openstack_networking_floatingip_v2.floating_ip
# openstack_networking_floatingip_v2.floating_ip:
resource "openstack_networking_floatingip_v2" "floating_ip" {
address = "192.0.2.146"
Expand All @@ -82,3 +82,27 @@ Welcome to Ubuntu 24.04.4 LTS (GNU/Linux 6.8.0-101-generic x86_64)
[...]
ubuntu@cleura-cloud-launch-pad-ramp:~$
```

## Tearing down a Launch Pad

In the event that you built a Launch Pad for testing purposes only, **and you have not launched any other cloud resources in your environment,** you might want to tear it down.
To do so, issue the following command:

```console
$ tofu destroy -var-file="vars.tfvars"
[...]
Plan: 0 to add, 0 to change, 16 to destroy.

Do you really want to destroy all resources?
OpenTofu will destroy all your managed infrastructure, as shown above.
There is no undo. Only 'yes' will be accepted to confirm.

Enter a value: yes
```

At the prompt, type `yes` followed by the `Enter` key.
After a minute or so, you will see the following message:

```plain
Destroy complete! Resources: 16 destroyed.
```