Terraform: Difference between revisions

From 탱이의 잡동사니
Jump to navigation Jump to search
No edit summary
No edit summary
Line 1: Line 1:
== Overview ==
== Overview ==
Terraform 내용 정리.
Terraform 내용 정리.
== Syntax ==
* https://www.terraform.io/docs/configuration-0-11/syntax.html


== Provider ==
== Provider ==

Revision as of 00:44, 24 January 2020

Overview

Terraform 내용 정리.

Syntax

Provider

provider "google" {
  credentials = "${file("account.json")}"
  project     = "my-project-id"
  region      = "us-central1"
}