Skip to content

Commit 50ff6bb

Browse files
committed
changed message variable to sensitive
1 parent 3d78c1e commit 50ff6bb

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ The following steps were tested on Ubuntu 20.04 but supposed to be valid for oth
9999
```
100100
1. Deploy:
101101
```
102-
terraform apply -var-file="secret.tfvars" -auto-approve
102+
terraform apply -var-file="secret.tfvars" -auto-approve && terraform output -raw next_steps
103103
```
104104
1. If everything goes well, you should get an output like this:
105105
```config
@@ -186,7 +186,7 @@ The following steps were tested on Ubuntu 20.04 but supposed to be valid for oth
186186
187187
This is it!
188188
189-
If you need to remove everything created by this Terraform module, you can simply run `terraform destroy`. Do not forget to do it if you're just experimenting. Otherwise, if you leave infrastructure blocks running, they might significantly affect your AWS bill (depending on the EC2 instance family you've chosen, the disk type, and size).
189+
If you need to remove everything created by this Terraform module, you can run `terraform destroy -var-file="secret.tfvars" -auto-approve`. Do not forget to do it if you're just experimenting. Otherwise, if you leave infrastructure blocks running, they might significantly affect your AWS bill (depending on the EC2 instance family you've chosen, the disk type, and size).
190190
191191
## Important Note
192192
When the DLE creates new database clones, it makes them available on incremental ports in the 6000 range (e.g. 6000, 6001, ...). The DLE CLI will also report that the clone is available on a port in the 6000 range. However, please note that these are the ports when accessing the DLE from `localhost`. This Terraform module deploys [Envoy](https://www.envoyproxy.io/) to handle SSL termination and port forwarding to connect to DLE generated clones.

outputs.tf

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ locals {
5252
5353
EOT
5454
}
55-
output "zzz_next_steps" {
55+
output "next_steps" {
5656
value = local.welcome_message
57+
sensitive = true
5758
}

0 commit comments

Comments
 (0)