Skip to content

Commit

Permalink
chore: update module path (#35)
Browse files Browse the repository at this point in the history
  • Loading branch information
nopestack authored Feb 12, 2025
1 parent 42813b5 commit 504e537
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,9 @@ jobs:
uses: actions/checkout@v3

- id: deploy-staging
uses: WalletConnect/actions/actions/deploy-terraform/@2.4.3
uses: WalletConnect/actions/actions/deploy-terraform/@2.5.4
env:
TF_LOG: DEBUG
TF_VAR_node_env: staging
TF_VAR_supabase_jwt_secret: ${{ secrets.SUPABASE_JWT_SECRET }}
TF_VAR_cookie_name: ${{ secrets.COOKIE_NAME }}
Expand Down Expand Up @@ -92,8 +93,9 @@ jobs:
uses: actions/checkout@v3

- id: deploy-prod
uses: WalletConnect/actions/actions/deploy-terraform/@2.4.3
uses: WalletConnect/actions/actions/deploy-terraform/@2.5.4
env:
TF_LOG: DEBUG
TF_VAR_node_env: production
TF_VAR_supabase_jwt_secret: ${{ secrets.SUPABASE_JWT_SECRET }}
TF_VAR_cookie_name: ${{ secrets.COOKIE_NAME }}
Expand Down
5 changes: 2 additions & 3 deletions terraform/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -48,15 +48,14 @@ module "vpc" {
}

module "tags" {
source = "github.com/WalletConnect/terraform-modules.git?ref=52a74ee5bcaf5cacb5664c6f88d9dbce28500581//modules/tags"
source = "github.com/WalletConnect/terraform-modules.git//modules/tags?ref=52a74ee5bcaf5cacb5664c6f88d9dbce28500581"

application = local.app_name
env = local.environment
}

module "dns" {
source = "github.com/WalletConnect/terraform-modules.git?ref=52a74ee5bcaf5cacb5664c6f88d9dbce28500581//modules/dns"

source = "github.com/WalletConnect/terraform-modules.git//modules/dns?ref=52a74ee5bcaf5cacb5664c6f88d9dbce28500581"
hosted_zone_name = var.public_url
fqdn = local.fqdn
}
Expand Down

0 comments on commit 504e537

Please sign in to comment.