Skip to content

Commit

Permalink
Merge pull request #1734 from bluPhy/master
Browse files Browse the repository at this point in the history
Change to tools/lint.sh to invoke python3 for blueprint metadata

Wording update to:
fast/stages-multitenant/0-bootstrap-tenant/identity-providers.tf
fast/stages/0-bootstrap/identity-providers.tf
  • Loading branch information
bluPhy authored Oct 5, 2023
2 parents ef3fcce + 81c6959 commit 6faf34f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ resource "google_iam_workload_identity_pool_provider" "default" {
oidc {
# Setting an empty list configures allowed_audiences to the url of the provider
allowed_audiences = each.value.custom_settings.audiences
# If users don't provide an issuer_uri, we set the public one for the plaform choosed.
# If users don't provide an issuer_uri, we set the public one for the platform choosed.
issuer_uri = (
each.value.custom_settings.issuer_uri != null
? each.value.custom_settings.issuer_uri
Expand Down
2 changes: 1 addition & 1 deletion fast/stages/0-bootstrap/identity-providers.tf
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ resource "google_iam_workload_identity_pool_provider" "default" {
oidc {
# Setting an empty list configures allowed_audiences to the url of the provider
allowed_audiences = each.value.custom_settings.audiences
# If users don't provide an issuer_uri, we set the public one for the plaform choosed.
# If users don't provide an issuer_uri, we set the public one for the platform choosed.
issuer_uri = (
each.value.custom_settings.issuer_uri != null
? each.value.custom_settings.issuer_uri
Expand Down
2 changes: 1 addition & 1 deletion tools/lint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,4 @@ yapf --style="{based_on_style: google, indent_width: 2, SPLIT_BEFORE_NAMED_ASSIG
blueprints/cloud-operations/network-dashboard/src/plugins/*py

echo -- Blueprint metadata --
python tools/validate_metadata.py -v blueprints --verbose --failed-only
python3 tools/validate_metadata.py -v blueprints --verbose --failed-only

0 comments on commit 6faf34f

Please sign in to comment.