9 lines
140 B
HCL
9 lines
140 B
HCL
terraform {
|
|
backend "gcs" {}
|
|
}
|
|
|
|
# Google Providerの設定
|
|
provider "google" {
|
|
project = var.project_id
|
|
region = var.region
|
|
} |