From 1fb6e1b7a3b1f982526cc8a339005373fc7d08ac Mon Sep 17 00:00:00 2001 From: Matthew Emes Date: Fri, 7 Jun 2024 11:39:51 -0700 Subject: [PATCH] chore: Bump embedded version to 1.0.8 --- README.md | 6 +++--- examples/cloud_credential/README.md | 2 +- examples/cloud_credential/main.tf | 2 +- examples/fixed_id/README.md | 2 +- examples/fixed_id/main.tf | 2 +- examples/simple_org_role/README.md | 2 +- examples/simple_org_role/main.tf | 2 +- examples/simple_project_role/README.md | 2 +- examples/simple_project_role/main.tf | 2 +- test/profiles/f5-xc-cloud-credential/inspec.yml | 2 +- test/profiles/f5-xc-role/inspec.yml | 2 +- 11 files changed, 13 insertions(+), 13 deletions(-) diff --git a/README.md b/README.md index 1262786..d8ce3dd 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.6" + version = "1.0.8" 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.6" + version = "1.0.8" 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.6" + version = "1.0.8" 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 1463908..e4bfb34 100644 --- a/examples/cloud_credential/README.md +++ b/examples/cloud_credential/README.md @@ -58,7 +58,7 @@ name = "f5-xc" | Name | Source | Version | |------|--------|---------| -| [role](#module\_role) | memes/f5-distributed-cloud-role/google | 1.0.6 | +| [role](#module\_role) | memes/f5-distributed-cloud-role/google | 1.0.8 | ## Resources diff --git a/examples/cloud_credential/main.tf b/examples/cloud_credential/main.tf index 15f90c5..3733b13 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.6" + version = "1.0.8" 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 c0db37b..0060a7d 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.6 | +| [role](#module\_role) | memes/f5-distributed-cloud-role/google | 1.0.8 | ## Resources diff --git a/examples/fixed_id/main.tf b/examples/fixed_id/main.tf index 60f7976..3ebc72d 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.6" + version = "1.0.8" 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 9e537ec..a35f871 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.6 | +| [role](#module\_role) | memes/f5-distributed-cloud-role/google | 1.0.8 | ## Resources diff --git a/examples/simple_org_role/main.tf b/examples/simple_org_role/main.tf index 97bbabe..6e4aace 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.6" + version = "1.0.8" 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 a9a84bd..a32bb1b 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.6 | +| [role](#module\_role) | memes/f5-distributed-cloud-role/google | 1.0.8 | ## Resources diff --git a/examples/simple_project_role/main.tf b/examples/simple_project_role/main.tf index b52eb1d..25dfea0 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.6" + version = "1.0.8" 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 b3888c6..66eb916 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.6 +version: 1.0.8 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 0b9ee89..e13353c 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.6 +version: 1.0.8 supports: - platform: gcp depends: