daml/infra/writer.tf
2019-08-13 17:23:03 +01:00

12 lines
359 B
HCL

# Copyright (c) 2019 The DAML Authors. 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}"
}