Skip to content
This repository has been archived by the owner on Jul 12, 2023. It is now read-only.

Commit

Permalink
Update Terraform quick setup (#755)
Browse files Browse the repository at this point in the history
Fixes GH-754
  • Loading branch information
sethvargo authored Oct 6, 2020
1 parent 550c45e commit f7ecfa7
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions terraform/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,16 @@ This is for a POC. You should **not** use this method for production.
1. Save the project ID as a Terraform variable:

```text
$ echo "project = \"${PROJECT_ID}\"" >> ./terraform.tfvars
```
$ cat <<EOF > terraform.tfvars
project = "${PROJECT_ID}"
service_environment = {
server = {
FIREBASE_PRIVACY_POLICY_URL = "TODO"
FIREBASE_TERMS_OF_SERVICE_URL = "TODO"
}
}
```

1. Run `terraform init`. Terraform will automatically download the plugins
required to execute this code. You only need to do this once per machine.
Expand Down

0 comments on commit f7ecfa7

Please sign in to comment.