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

Update Terraform quick setup #755

Merged
merged 1 commit into from
Oct 6, 2020
Merged
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: 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