Skip to content

Commit

Permalink
chore: Update to v1.0.5 in READMEs and examples
Browse files Browse the repository at this point in the history
  • Loading branch information
memes committed Sep 5, 2023
1 parent 26983b2 commit 6da77f4
Show file tree
Hide file tree
Showing 11 changed files with 13 additions and 13 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
}
Expand All @@ -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"
}
Expand All @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion examples/cloud_credential/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ name = "f5-xc"

| Name | Source | Version |
|------|--------|---------|
| <a name="module_role"></a> [role](#module\_role) | memes/f5-distributed-cloud-role/google | 1.0.4 |
| <a name="module_role"></a> [role](#module\_role) | memes/f5-distributed-cloud-role/google | 1.0.5 |

## Resources

Expand Down
2 changes: 1 addition & 1 deletion examples/cloud_credential/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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_.]/", "_")
}
Expand Down
2 changes: 1 addition & 1 deletion examples/fixed_id/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ members = [

| Name | Source | Version |
|------|--------|---------|
| <a name="module_role"></a> [role](#module\_role) | memes/f5-distributed-cloud-role/google | 1.0.4 |
| <a name="module_role"></a> [role](#module\_role) | memes/f5-distributed-cloud-role/google | 1.0.5 |

## Resources

Expand Down
2 changes: 1 addition & 1 deletion examples/fixed_id/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion examples/simple_org_role/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ org_id = "123456"

| Name | Source | Version |
|------|--------|---------|
| <a name="module_role"></a> [role](#module\_role) | memes/f5-distributed-cloud-role/google | 1.0.4 |
| <a name="module_role"></a> [role](#module\_role) | memes/f5-distributed-cloud-role/google | 1.0.5 |

## Resources

Expand Down
2 changes: 1 addition & 1 deletion examples/simple_org_role/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
2 changes: 1 addition & 1 deletion examples/simple_project_role/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ members = [

| Name | Source | Version |
|------|--------|---------|
| <a name="module_role"></a> [role](#module\_role) | memes/f5-distributed-cloud-role/google | 1.0.4 |
| <a name="module_role"></a> [role](#module\_role) | memes/f5-distributed-cloud-role/google | 1.0.5 |

## Resources

Expand Down
2 changes: 1 addition & 1 deletion examples/simple_project_role/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
2 changes: 1 addition & 1 deletion test/profiles/f5-xc-cloud-credential/inspec.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: f5-xc-cloud-credential
title: F5 Distributed Cloud - Cloud Credential verification
maintainer: Matthew Emes <memes@matthewemes.com>
license: Apache-2.0
version: 1.0.4
version: 1.0.5
inputs:
- name: output_cloud_credentials
type: string
Expand Down
2 changes: 1 addition & 1 deletion test/profiles/f5-xc-role/inspec.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: f5-xc-role
title: F5 Distributed Cloud custom role verification
maintainer: Matthew Emes <memes@matthewemes.com>
license: Apache-2.0
version: 1.0.4
version: 1.0.5
supports:
- platform: gcp
depends:
Expand Down

0 comments on commit 6da77f4

Please sign in to comment.