10 lines
231 B
HCL
10 lines
231 B
HCL
# Google CloudのAPIを有効化
|
|
|
|
resource "google_project_service" "services" {
|
|
for_each = toset([
|
|
"run.googleapis.com",
|
|
"artifactregistry.googleapis.com",
|
|
"cloudbuild.googleapis.com",
|
|
])
|
|
service = each.key
|
|
} |