daml/infra/writer.tf

12 lines
392 B
Terraform
Raw Normal View History

# Copyright (c) 2022 Digital Asset (Switzerland) GmbH and/or its affiliates. All rights reserved.
2019-04-04 11:33:38 +03:00
# 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
2019-04-04 11:33:38 +03:00
}