-
Notifications
You must be signed in to change notification settings - Fork 175
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: cloud run services iam submodule (#164)
- Loading branch information
Showing
8 changed files
with
315 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# Cloud Run Example | ||
|
||
This example illustrates how to use the `cloud_run_service_iam` submodule | ||
|
||
<!-- BEGINNING OF PRE-COMMIT-TERRAFORM DOCS HOOK --> | ||
## Inputs | ||
|
||
| Name | Description | Type | Default | Required | | ||
|------|-------------|------|---------|:--------:| | ||
| cloud\_run\_service\_location | The location of the cloud run instance | `string` | n/a | yes | | ||
| cloud\_run\_service\_one | First cloud run service to add the IAM policies/bindings | `string` | n/a | yes | | ||
| cloud\_run\_service\_project | Project id of the cloud run service | `string` | n/a | yes | | ||
| cloud\_run\_service\_two | Second cloud run service to add the IAM policies/bindings | `string` | n/a | yes | | ||
| group\_email | Email for group to receive roles (ex. group@example.com) | `string` | n/a | yes | | ||
| sa\_email | Email for Service Account to receive roles (Ex. default-sa@example-project-id.iam.gserviceaccount.com) | `string` | n/a | yes | | ||
| user\_email | Email for group to receive roles (Ex. user@example.com) | `string` | n/a | yes | | ||
|
||
## Outputs | ||
|
||
No output. | ||
|
||
<!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
/** | ||
* Copyright 2019 Google LLC | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
/****************************************** | ||
Module cloud_run_service_iam_binding calling | ||
*****************************************/ | ||
module "cloud_run_service_iam_binding" { | ||
source = "../../modules/cloud_run_services_iam/" | ||
project = var.cloud_run_service_project | ||
location = var.cloud_run_service_location | ||
cloud_run_services = [var.cloud_run_service_one, var.cloud_run_service_two] | ||
mode = "authoritative" | ||
|
||
bindings = { | ||
"roles/role.admin" = [ | ||
"serviceAccount:${var.sa_email}", | ||
"group:${var.group_email}", | ||
"user:${var.user_email}", | ||
] | ||
"roles/role.invoker" = [ | ||
"serviceAccount:${var.sa_email}", | ||
"group:${var.group_email}", | ||
"user:${var.user_email}", | ||
] | ||
} | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
/** | ||
* Copyright 2019 Google LLC | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
variable "group_email" { | ||
type = string | ||
description = "Email for group to receive roles (ex. group@example.com)" | ||
} | ||
|
||
variable "sa_email" { | ||
type = string | ||
description = "Email for Service Account to receive roles (Ex. default-sa@example-project-id.iam.gserviceaccount.com)" | ||
} | ||
|
||
variable "user_email" { | ||
type = string | ||
description = "Email for group to receive roles (Ex. user@example.com)" | ||
} | ||
|
||
/****************************************** | ||
cloud_run_service_iam_binding variables | ||
*****************************************/ | ||
variable "cloud_run_service_project" { | ||
type = string | ||
description = "Project id of the cloud run service" | ||
} | ||
|
||
variable "cloud_run_service_location" { | ||
type = string | ||
description = "The location of the cloud run instance" | ||
} | ||
|
||
variable "cloud_run_service_one" { | ||
type = string | ||
description = "First cloud run service to add the IAM policies/bindings" | ||
} | ||
|
||
variable "cloud_run_service_two" { | ||
type = string | ||
description = "Second cloud run service to add the IAM policies/bindings" | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
/** | ||
* Copyright 2021 Google LLC | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
terraform { | ||
required_version = ">= 0.13" | ||
required_providers { | ||
google = { | ||
source = "hashicorp/google" | ||
version = "~> 4.0" | ||
} | ||
google-beta = { | ||
source = "hashicorp/google-beta" | ||
version = "~> 4.0" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
# Module Cloud Run Service IAM | ||
|
||
This optional module is used to assign cloud run service roles | ||
|
||
## Example Usage | ||
``` | ||
module "cloud-run-services-iam-bindings" { | ||
source = "terraform-google-modules/iam/google//modules/cloud_run_services_iam" | ||
project = "my_cloud_run_project" | ||
cloud_run_services = ["my_cloud_run_service_one", "my_cloud_run_service_two"] | ||
mode = "authoritative" | ||
bindings = { | ||
"roles/run.invoker" = [ | ||
"serviceAccount:my-sa@my-project.iam.gserviceaccount.com", | ||
"group:my-group@my-org.com", | ||
"user:my-user@my-org.com", | ||
] | ||
"roles/run.admin" = [ | ||
"serviceAccount:my-sa@my-project.iam.gserviceaccount.com", | ||
"group:my-group@my-org.com", | ||
"user:my-user@my-org.com", | ||
] | ||
} | ||
} | ||
``` | ||
|
||
<!-- BEGINNING OF PRE-COMMIT-TERRAFORM DOCS HOOK --> | ||
## Inputs | ||
|
||
| Name | Description | Type | Default | Required | | ||
|------|-------------|------|---------|:--------:| | ||
| bindings | Map of role (key) and list of members (value) to add the IAM policies/bindings | `map(any)` | n/a | yes | | ||
| cloud\_run\_services | Cloud Run services list to add the IAM policies/bindings | `list(string)` | `[]` | no | | ||
| location | The location of the cloud run instance | `string` | `""` | no | | ||
| mode | Mode for adding the IAM policies/bindings, additive and authoritative | `string` | `"additive"` | no | | ||
| project | Project to add the IAM policies/bindings | `string` | `""` | no | | ||
|
||
## Outputs | ||
|
||
| Name | Description | | ||
|------|-------------| | ||
| cloud\_run\_services | Cloud Run services which received for bindings. | | ||
| members | Members which were bound to the Cloud Run services. | | ||
| roles | Roles which were assigned to members. | | ||
|
||
<!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
/** | ||
* Copyright 2019 Google LLC | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
/****************************************** | ||
Run helper module to get generic calculated data | ||
*****************************************/ | ||
module "helper" { | ||
source = "../helper" | ||
bindings = var.bindings | ||
mode = var.mode | ||
entities = var.cloud_run_services | ||
} | ||
|
||
/****************************************** | ||
Cloud Run Servive IAM binding authoritative | ||
*****************************************/ | ||
resource "google_cloud_run_service_iam_binding" "cloud_run_iam_authoritative" { | ||
for_each = module.helper.set_authoritative | ||
project = var.project | ||
location = var.location | ||
service = module.helper.bindings_authoritative[each.key].name | ||
role = module.helper.bindings_authoritative[each.key].role | ||
members = module.helper.bindings_authoritative[each.key].members | ||
} | ||
|
||
/****************************************** | ||
Cloud Run Servive IAM binding additive | ||
*****************************************/ | ||
resource "google_cloud_run_service_iam_member" "cloud_run_iam_additive" { | ||
for_each = module.helper.set_additive | ||
project = var.project | ||
location = var.location | ||
service = module.helper.bindings_additive[each.key].name | ||
role = module.helper.bindings_additive[each.key].role | ||
member = module.helper.bindings_additive[each.key].member | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
/** | ||
* Copyright 2019 Google LLC | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
output "cloud_run_services" { | ||
value = distinct(module.helper.bindings_by_member[*].name) | ||
description = "Cloud Run services which received for bindings." | ||
depends_on = [google_cloud_run_service_iam_binding.cloud_run_iam_authoritative, google_cloud_run_service_iam_member.cloud_run_iam_additive] | ||
} | ||
|
||
output "roles" { | ||
value = distinct(module.helper.bindings_by_member[*].role) | ||
description = "Roles which were assigned to members." | ||
} | ||
|
||
output "members" { | ||
value = distinct(module.helper.bindings_by_member[*].member) | ||
description = "Members which were bound to the Cloud Run services." | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
/** | ||
* Copyright 2019 Google LLC | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
variable "project" { | ||
description = "Project to add the IAM policies/bindings" | ||
default = "" | ||
type = string | ||
} | ||
|
||
variable "location" { | ||
description = "The location of the cloud run instance" | ||
default = "" | ||
type = string | ||
} | ||
|
||
variable "cloud_run_services" { | ||
description = "Cloud Run services list to add the IAM policies/bindings" | ||
default = [] | ||
type = list(string) | ||
} | ||
|
||
variable "mode" { | ||
description = "Mode for adding the IAM policies/bindings, additive and authoritative" | ||
default = "additive" | ||
} | ||
|
||
variable "bindings" { | ||
description = "Map of role (key) and list of members (value) to add the IAM policies/bindings" | ||
type = map(any) | ||
} |