https://github.com/apavamontri/gcp-terraform-sample
This the terraform script I wrote in 2018 to create GCP VPC.
https://github.com/apavamontri/gcp-terraform-sample
Last synced: about 1 month ago
JSON representation
This the terraform script I wrote in 2018 to create GCP VPC.
- Host: GitHub
- URL: https://github.com/apavamontri/gcp-terraform-sample
- Owner: apavamontri
- License: unlicense
- Created: 2020-02-13T08:27:48.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-02-13T09:24:23.000Z (over 5 years ago)
- Last Synced: 2025-02-17T04:39:41.295Z (4 months ago)
- Language: HCL
- Homepage:
- Size: 8.79 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Terraform to setup Google Cloud Platform (GCP) for ZRS project
## Terraform
Allow you to create, update, delete infrastructure using code. For more information please visit [Terraform][0] website.
### Install Terraform on macOS
Use `homebrew`. For installation instruction please visit [Homebrew][1] website.
```
brew install terraform
```### Google Cloud Provider
We will be using Google Cloud provider to interact with Google Cloud Services.
1. Create _Service Account_ and save the JSON file as `xxx.json`
2. Copy to `root` of terraform directory
3. Add `*.json` to `.gitignore` file[0]: https://www.terraform.io/
[1]: https://brew.sh/