Skip to content

Commit

Permalink
Fix for using latest version (#186)
Browse files Browse the repository at this point in the history
…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
  • Loading branch information
vijay-stephen authored Aug 2, 2024
1 parent 243ccaf commit e810319
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion terraform/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Deployment of Backstage to an ECS Cluster

| Name | Source | Version |
|------|--------|---------|
| <a name="module_backstage"></a> [backstage](#module\_backstage) | sourcefuse/arc-backstage-ecs-app/aws | 0.2.8 |
| <a name="module_backstage"></a> [backstage](#module\_backstage) | git::https://github.com/sourcefuse/arc-backstage-ecs-app | n/a |
| <a name="module_ecs_common_data"></a> [ecs\_common\_data](#module\_ecs\_common\_data) | ./ecs-common-data | n/a |
| <a name="module_tags"></a> [tags](#module\_tags) | sourcefuse/arc-tags/aws | 1.2.3 |

Expand Down
4 changes: 2 additions & 2 deletions terraform/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit e810319

Please sign in to comment.