mirror of
https://github.com/Blockstream/satellite-api.git
synced 2025-02-23 05:55:06 +01:00
14 lines
451 B
HCL
14 lines
451 B
HCL
resource "google_service_account" "api_server_ci" {
|
|
project = var.project
|
|
account_id = "satellite-api-tf-ci"
|
|
display_name = "satellite-api-tf-ci"
|
|
description = "Terraform/CI"
|
|
count = local.create_mainnet
|
|
}
|
|
|
|
resource "google_project_iam_member" "api_server_ci" {
|
|
project = var.project
|
|
role = "roles/editor"
|
|
member = "serviceAccount:${google_service_account.api_server_ci[0].email}"
|
|
count = local.create_mainnet
|
|
}
|