Skip to content

Commit 00d5a6f

Browse files
authored
Update example to v0.4.54 (#36)
1 parent 83a48e3 commit 00d5a6f

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

google-workspace.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ provider "google" {
77

88

99
module "worklytics_connectors_google_workspace" {
10-
source = "git::https://github.com/worklytics/psoxy//infra/modules/worklytics-connectors-google-workspace?ref=v0.4.53"
10+
source = "git::https://github.com/worklytics/psoxy//infra/modules/worklytics-connectors-google-workspace?ref=v0.4.54"
1111

1212
providers = {
1313
google = google.google_workspace

main.tf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ terraform {
2020

2121
# general cases
2222
module "worklytics_connectors" {
23-
source = "git::https://github.com/worklytics/psoxy//infra/modules/worklytics-connectors?ref=v0.4.53"
23+
source = "git::https://github.com/worklytics/psoxy//infra/modules/worklytics-connectors?ref=v0.4.54"
2424

2525
enabled_connectors = var.enabled_connectors
2626
jira_cloud_id = var.jira_cloud_id
@@ -97,7 +97,7 @@ locals {
9797
}
9898

9999
module "psoxy" {
100-
source = "git::https://github.com/worklytics/psoxy//infra/modules/aws-host?ref=v0.4.53"
100+
source = "git::https://github.com/worklytics/psoxy//infra/modules/aws-host?ref=v0.4.54"
101101

102102
environment_name = var.environment_name
103103
aws_account_id = var.aws_account_id
@@ -152,7 +152,7 @@ locals {
152152
module "connection_in_worklytics" {
153153
for_each = local.all_instances
154154

155-
source = "git::https://github.com/worklytics/psoxy//infra/modules/worklytics-psoxy-connection-aws?ref=v0.4.53"
155+
source = "git::https://github.com/worklytics/psoxy//infra/modules/worklytics-psoxy-connection-aws?ref=v0.4.54"
156156

157157
psoxy_instance_id = each.key
158158
worklytics_host = var.worklytics_host

msft-365.tf

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# BEGIN MSFT
22

33
module "worklytics_connectors_msft_365" {
4-
source = "git::https://github.com/worklytics/psoxy//infra/modules/worklytics-connectors-msft-365?ref=v0.4.53"
4+
source = "git::https://github.com/worklytics/psoxy//infra/modules/worklytics-connectors-msft-365?ref=v0.4.54"
55

66

77
enabled_connectors = var.enabled_connectors
@@ -45,7 +45,7 @@ data "aws_region" "current" {
4545
module "cognito_identity_pool" {
4646
count = local.msft_365_enabled ? 1 : 0 # only provision identity pool if MSFT-365 connectors are enabled
4747

48-
source = "git::https://github.com/worklytics/psoxy//infra/modules/aws-cognito-pool?ref=v0.4.53"
48+
source = "git::https://github.com/worklytics/psoxy//infra/modules/aws-cognito-pool?ref=v0.4.54"
4949

5050
developer_provider_name = local.developer_provider_name
5151
name = "${local.env_qualifier}-azure-ad-federation"
@@ -54,7 +54,7 @@ module "cognito_identity_pool" {
5454
module "cognito_identity" {
5555
count = local.msft_365_enabled ? 1 : 0 # only provision identity pool if MSFT-365 connectors are enabled
5656

57-
source = "git::https://github.com/worklytics/psoxy//infra/modules/aws-cognito-identity-cli?ref=v0.4.53"
57+
source = "git::https://github.com/worklytics/psoxy//infra/modules/aws-cognito-identity-cli?ref=v0.4.54"
5858

5959
aws_region = data.aws_region.current.id
6060
aws_role = var.aws_assume_role_arn
@@ -75,7 +75,7 @@ resource "aws_iam_role_policy_attachment" "cognito_lambda_policy" {
7575
module "msft_connection_auth_federation" {
7676
for_each = module.worklytics_connectors_msft_365.enabled_api_connectors
7777

78-
source = "git::https://github.com/worklytics/psoxy//infra/modules/azuread-federated-credentials?ref=v0.4.53"
78+
source = "git::https://github.com/worklytics/psoxy//infra/modules/azuread-federated-credentials?ref=v0.4.54"
7979

8080
application_object_id = each.value.connector.id
8181
display_name = "${local.env_qualifier}AccessFromAWS"

0 commit comments

Comments
 (0)