sigs.k8s.io/cluster-api-provider-azure@v1.14.3/hack/terraform-gcr-init/README.md (about)

     1  terraform-gcr-init
     2  ==================
     3  
     4  This can be used as a Terraform module to set up a Google Project
     5  for each developer working on cluster-api-provider-azure as a place for them
     6  to push container images.
     7  
     8  **NOTE:**
     9  > To make GCR usable, it will make the repositories publicly readable.
    10  
    11  ## Example use
    12  
    13  ``` hcl
    14  module "a_dev" {
    15    source  = "<path to here>"
    16  
    17    // The name of the developer
    18    short_name = "a_dev"
    19  
    20    // A Google entity that has ownership of the project
    21    owners = "group:cluster-provider-azure@sigs.k8s.io"
    22  
    23    // The organisation ID
    24    org_id = "123456789012"
    25  
    26    // The billing account for this project
    27    billing_account = "012345-6789AB-CDEF01"
    28  }
    29  ```