Skip to content

Instantly share code, notes, and snippets.

@bechampion
Created June 16, 2022 14:58
Show Gist options
  • Save bechampion/2da92acb1e1020884006fc0b5c0d1fe5 to your computer and use it in GitHub Desktop.
Save bechampion/2da92acb1e1020884006fc0b5c0d1fe5 to your computer and use it in GitHub Desktop.
module "projects_iam_bindings_additive" {
source = "terraform-google-modules/iam/google//modules/projects_iam"
version = "~> 6.4"
mode = "additive"
projects = ["pse-jeronimo-garcia"]
bindings = {
"roles/storage.admin" = [
"user:racker-jero-cafd3766@gcp.rackspace.com"
]
}
}
module "projects_iam_bindings" {
source = "terraform-google-modules/iam/google//modules/projects_iam"
version = "~> 6.4"
mode = "authoritative"
projects = ["pse-jeronimo-garcia"]
bindings = {
"roles/storage.admin" = [
"user:racker-jero-cafd3766@gcp.rackspace.com"
]
}
}
output "dada" {
value =2
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment