Skip to content

Commit

Permalink
Update README.md (#898)
Browse files Browse the repository at this point in the history
* Update README.md

* Update terraform.tfvars.sample

* Update README.md

* Update README.md
  • Loading branch information
juliocc authored Oct 19, 2022
1 parent 5ef93e2 commit 2333bf5
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 16 deletions.
30 changes: 16 additions & 14 deletions fast/stages/00-bootstrap/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -195,23 +195,25 @@ Then make sure you have configured the correct values for the following variable

You can also adapt the example that follows to your needs:

```hcl
# fetch the required id by running `gcloud beta billing accounts list`
billing_account={
id="012345-67890A-BCDEF0"
organization_id="01234567890"
```tfvars
# use `gcloud beta billing accounts list`
# if you have too many accounts, check the Cloud Console :)
billing_account = {
id = "012345-67890A-BCDEF0"
organization_id = 1234567890
}
# get the required info by running `gcloud organizations list`
organization={
id="01234567890"
domain="fast.example.com"
customer_id="Cxxxxxxx"
# use `gcloud organizations list`
organization = {
domain = "example.org"
id = 1234567890
customer_id = "C000001"
}
# create your own 4-letters prefix
prefix="fast"
# comment out if you want to leverage automatic generation of configs
# outputs_location = "~/fast-config"
outputs_location = "~/fast-config"
# use something unique and no longer than 9 characters
prefix = "abcd"
```

### Output files and cross-stage variables
Expand Down
4 changes: 2 additions & 2 deletions fast/stages/00-bootstrap/terraform.tfvars.sample
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ organization = {

outputs_location = "~/fast-config"

# use something unique and short
prefix = "abcd"
# use something unique and no longer than 9 characters
prefix = "abcd"

0 comments on commit 2333bf5

Please sign in to comment.