Skip to content

Commit 556aa71

Browse files
committed
attempt to fix CI unit tests
1 parent c593fd5 commit 556aa71

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/globally-load-balanced-web-servers-pr-check.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ on:
33
pull_request:
44
paths:
55
- 'reference-architectures/globally-load-balanced-web-servers/**/*.tf'
6-
- 'reference-architectures/globally-load-balanced-web-servers/test/*'
6+
- 'reference-architectures/globally-load-balanced-web-servers/test/**/*'
77

88
jobs:
99
call-common:
10-
uses: .github/workflows/workflow-terraform-pr-check.yaml
10+
uses: ./.github/workflows/workflow-terraform-pr-check.yaml
1111
with:
1212
module_path: reference-architectures/globally-load-balanced-web-servers

reference-architectures/globally-load-balanced-web-servers/terraform/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module "multi_region_vpc" {
2-
source = "git@github.com:digitalocean/terraform-digitalocean-multi-region-vpc.git"
2+
source = "github.com/digitalocean/terraform-digitalocean-multi-region-vpc"
33
name_prefix = var.name_prefix
44
vpcs = var.vpcs
55
}
@@ -12,7 +12,7 @@ resource "digitalocean_certificate" "cert" {
1212
}
1313

1414
module "glb_stack" {
15-
source = "git@github.com:digitalocean/terraform-digitalocean-glb-stack.git"
15+
source = "github.com/digitalocean/terraform-digitalocean-glb-stack"
1616
name_prefix = var.name_prefix
1717
vpcs = [for vpc in values(module.multi_region_vpc.vpc_details) : { region = vpc.region, vpc_uuid = vpc.id }]
1818
region_dns_records = true

0 commit comments

Comments
 (0)