Skip to content

Commit

Permalink
fixes from release QA
Browse files Browse the repository at this point in the history
  • Loading branch information
eschultink committed Mar 23, 2023
1 parent 9c5f648 commit 2ba1dc4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 7 deletions.
7 changes: 1 addition & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -245,12 +245,7 @@ terraform apply

## Latest Releases

### Current: [v0.4.14](https://github.com/Worklytics/psoxy/releases/tag/v0.4.14)

### Previous: [v0.4.13](https://github.com/Worklytics/psoxy/releases/tag/v0.4.13)

Highlights:
- documentation improvements
### Current: [v0.4.15](https://github.com/Worklytics/psoxy/releases/tag/v0.4.15)

Review [earlier release notes in GitHub](https://github.com/Worklytics/psoxy/releases).

Expand Down
2 changes: 1 addition & 1 deletion infra/modules/google-workspace-dwd-connection/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ locals {
trimmed_id = trim(var.connector_service_account_id, " ")

# TODO: md5 here is 32 chars of hex, so some risk of collision by truncating, while could use
sa_account_id = local.trimmed_id < 31 ? lower(replace(local.trimmed_id, " ", "-")) : substr(md5(local.trimmed_id), 0, 30)
sa_account_id = length(local.trimmed_id) < 31 ? lower(replace(local.trimmed_id, " ", "-")) : substr(md5(local.trimmed_id), 0, 30)
}

# service account to personify connector
Expand Down

0 comments on commit 2ba1dc4

Please sign in to comment.