Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update FAST bootstrap README.md #898

Merged
merged 4 commits into from Oct 19, 2022
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
30 changes: 16 additions & 14 deletions fast/stages/00-bootstrap/README.md
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
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"