mirror of
https://github.com/digital-asset/daml.git
synced 2024-11-13 00:16:19 +03:00
12 lines
397 B
Terraform
12 lines
397 B
Terraform
|
# Copyright (c) 2019 Digital Asset (Switzerland) GmbH and/or its affiliates. All rights reserved.
|
||
|
# SPDX-License-Identifier: Apache-2.0
|
||
|
|
||
|
// This service account will be used to write to the GCS bucket using the
|
||
|
// bazel remote capabilities in the CI
|
||
|
|
||
|
resource "google_service_account" "writer" {
|
||
|
account_id = "daml-ci-writer"
|
||
|
display_name = "CI Writer"
|
||
|
project = "${local.project}"
|
||
|
}
|