Terraform: Difference between revisions

From 탱이의 잡동사니
Jump to navigation Jump to search
(Created page with "== Overview == Terraform 내용 정리. category:system")
 
No edit summary
Line 1: Line 1:
== Overview ==
== Overview ==
Terraform 내용 정리.
Terraform 내용 정리.
== Provider ==
<pre>
provider "google" {
  credentials = "${file("account.json")}"
  project    = "my-project-id"
  region      = "us-central1"
}
</pre>


[[category:system]]
[[category:system]]

Revision as of 17:55, 10 August 2019

Overview

Terraform 내용 정리.

Provider

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