From e81031910c837293e94becf673d728d8890c6b3c Mon Sep 17 00:00:00 2001 From: vijay-stephen <91307015+vijay-stephen@users.noreply.github.com> Date: Fri, 2 Aug 2024 18:24:46 +0530 Subject: [PATCH] Fix for using latest version (#186) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit …latest ## Description Please include a summary of the change and which issue is fixed. Please also include relevant motivation and context. List any dependencies that are required for this change. Fixes # (issue) ## Type of change Please delete options that are not relevant. - [x] Bug fix (non-breaking change which fixes an issue) - [ ] New feature (non-breaking change which adds functionality) - [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected) - [ ] Intermediate change (work in progress) ## How Has This Been Tested? Please describe the tests that you ran to verify your changes. Provide instructions so we can reproduce. Please also list any relevant details for your test configuration - [ ] Test A - [ ] Test B ## Checklist: - [ ] Performed a self-review of my own code - [ ] npm test passes on your machine - [ ] New tests added or existing tests modified to cover all changes - [ ] Code conforms with the style guide - [ ] API Documentation in code was updated - [ ] Any dependent changes have been merged and published in downstream modules --- terraform/README.md | 2 +- terraform/main.tf | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/terraform/README.md b/terraform/README.md index 4e3e4dc..c53c075 100644 --- a/terraform/README.md +++ b/terraform/README.md @@ -22,7 +22,7 @@ Deployment of Backstage to an ECS Cluster | Name | Source | Version | |------|--------|---------| -| [backstage](#module\_backstage) | sourcefuse/arc-backstage-ecs-app/aws | 0.2.8 | +| [backstage](#module\_backstage) | git::https://github.com/sourcefuse/arc-backstage-ecs-app | n/a | | [ecs\_common\_data](#module\_ecs\_common\_data) | ./ecs-common-data | n/a | | [tags](#module\_tags) | sourcefuse/arc-tags/aws | 1.2.3 | diff --git a/terraform/main.tf b/terraform/main.tf index 85ff69c..3c4f517 100644 --- a/terraform/main.tf +++ b/terraform/main.tf @@ -44,8 +44,8 @@ module "ecs_common_data" { ## Backstage ECS ################################################################################ module "backstage" { - source = "sourcefuse/arc-backstage-ecs-app/aws" - version = "0.2.8" + source = "git::https://github.com/sourcefuse/arc-backstage-ecs-app" + //version = "0.2.8" alb_dns_name = module.ecs_common_data.alb_dns_name alb_zone_id = module.ecs_common_data.alb_dns_zone_id app_host_name = var.app_host_name