diff --git a/README.md b/README.md index c894fb9..c5b67aa 100644 --- a/README.md +++ b/README.md @@ -52,7 +52,7 @@ See [Simple project role](examples/simple_project_role) example for more details ```hcl module "role" { source = "memes/f5-distributed-cloud-role/google" - version = "1.0.4" + version = "1.0.5" target_id = "my-project-id" members = ["serviceAccount:f5-xc@my-project-id.iam.gserviceaccount.com"] } @@ -67,7 +67,7 @@ See [Simple org role](examples/simple_org_role) example for more details. ```hcl module "org_role" { source = "memes/f5-distributed-cloud-role/google" - version = "1.0.4" + version = "1.0.5" target_type = "org" target_id = "my-org-id" } @@ -82,7 +82,7 @@ See [Fixed id](examples/fixed_id) example for more details. ```hcl module "role" { source = "memes/f5-distributed-cloud-role/google" - version = "1.0.4" + version = "1.0.5" id = "my_custom_role" target_id = "my-project-id" title = "An example F5 Distributed Cloud custom role" diff --git a/examples/cloud_credential/README.md b/examples/cloud_credential/README.md index 6ca7461..4f5fe47 100644 --- a/examples/cloud_credential/README.md +++ b/examples/cloud_credential/README.md @@ -54,7 +54,7 @@ name = "f5-xc" | Name | Source | Version | |------|--------|---------| -| [role](#module\_role) | memes/f5-distributed-cloud-role/google | 1.0.4 | +| [role](#module\_role) | memes/f5-distributed-cloud-role/google | 1.0.5 | ## Resources diff --git a/examples/cloud_credential/main.tf b/examples/cloud_credential/main.tf index 7c6df6a..126dc67 100644 --- a/examples/cloud_credential/main.tf +++ b/examples/cloud_credential/main.tf @@ -34,7 +34,7 @@ resource "google_service_account_key" "sa" { module "role" { source = "memes/f5-distributed-cloud-role/google" - version = "1.0.4" + version = "1.0.5" target_id = var.project_id random_id_prefix = replace(var.name, "/[^a-z0-9_.]/", "_") } diff --git a/examples/fixed_id/README.md b/examples/fixed_id/README.md index 969ca5b..89713a4 100644 --- a/examples/fixed_id/README.md +++ b/examples/fixed_id/README.md @@ -45,7 +45,7 @@ members = [ | Name | Source | Version | |------|--------|---------| -| [role](#module\_role) | memes/f5-distributed-cloud-role/google | 1.0.4 | +| [role](#module\_role) | memes/f5-distributed-cloud-role/google | 1.0.5 | ## Resources diff --git a/examples/fixed_id/main.tf b/examples/fixed_id/main.tf index 2c93edd..b9ef9b9 100644 --- a/examples/fixed_id/main.tf +++ b/examples/fixed_id/main.tf @@ -15,7 +15,7 @@ terraform { # Create a full custom F5 Distributed Cloud role with a fixed identifier module "role" { source = "memes/f5-distributed-cloud-role/google" - version = "1.0.4" + version = "1.0.5" target_id = var.project_id id = var.id title = var.title diff --git a/examples/simple_org_role/README.md b/examples/simple_org_role/README.md index b4a408e..823a659 100644 --- a/examples/simple_org_role/README.md +++ b/examples/simple_org_role/README.md @@ -37,7 +37,7 @@ org_id = "123456" | Name | Source | Version | |------|--------|---------| -| [role](#module\_role) | memes/f5-distributed-cloud-role/google | 1.0.4 | +| [role](#module\_role) | memes/f5-distributed-cloud-role/google | 1.0.5 | ## Resources diff --git a/examples/simple_org_role/main.tf b/examples/simple_org_role/main.tf index dce7c48..d879b77 100644 --- a/examples/simple_org_role/main.tf +++ b/examples/simple_org_role/main.tf @@ -14,7 +14,7 @@ terraform { # Create a custom F5 Distributed Cloud role for an organization module "role" { source = "memes/f5-distributed-cloud-role/google" - version = "1.0.4" + version = "1.0.5" target_type = "org" target_id = var.org_id } diff --git a/examples/simple_project_role/README.md b/examples/simple_project_role/README.md index c387ba3..7aeb439 100644 --- a/examples/simple_project_role/README.md +++ b/examples/simple_project_role/README.md @@ -42,7 +42,7 @@ members = [ | Name | Source | Version | |------|--------|---------| -| [role](#module\_role) | memes/f5-distributed-cloud-role/google | 1.0.4 | +| [role](#module\_role) | memes/f5-distributed-cloud-role/google | 1.0.5 | ## Resources diff --git a/examples/simple_project_role/main.tf b/examples/simple_project_role/main.tf index 4da9ad1..683e0be 100644 --- a/examples/simple_project_role/main.tf +++ b/examples/simple_project_role/main.tf @@ -14,7 +14,7 @@ terraform { # Create a custom F5 Distributed Cloud role and assign to the supplied accounts module "role" { source = "memes/f5-distributed-cloud-role/google" - version = "1.0.4" + version = "1.0.5" target_id = var.project_id members = var.members } diff --git a/test/profiles/f5-xc-cloud-credential/inspec.yml b/test/profiles/f5-xc-cloud-credential/inspec.yml index 7f4573c..6d3c18f 100644 --- a/test/profiles/f5-xc-cloud-credential/inspec.yml +++ b/test/profiles/f5-xc-cloud-credential/inspec.yml @@ -3,7 +3,7 @@ name: f5-xc-cloud-credential title: F5 Distributed Cloud - Cloud Credential verification maintainer: Matthew Emes license: Apache-2.0 -version: 1.0.4 +version: 1.0.5 inputs: - name: output_cloud_credentials type: string diff --git a/test/profiles/f5-xc-role/inspec.yml b/test/profiles/f5-xc-role/inspec.yml index 64797d4..448070c 100644 --- a/test/profiles/f5-xc-role/inspec.yml +++ b/test/profiles/f5-xc-role/inspec.yml @@ -3,7 +3,7 @@ name: f5-xc-role title: F5 Distributed Cloud custom role verification maintainer: Matthew Emes license: Apache-2.0 -version: 1.0.4 +version: 1.0.5 supports: - platform: gcp depends: