Skip to content

Commit

Permalink
Merge pull request #1 from nventive/fix/replacing-private-modules
Browse files Browse the repository at this point in the history
fix: Replacing private modules with public ones
  • Loading branch information
jbonnier authored Sep 28, 2023
2 parents 5315beb + 9dc6862 commit 6089602
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .docs/header.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg?style=flat-square)](LICENSE) [![Latest Release](https://img.shields.io/github/release/nventive/terraform-aws-ecs-cluster.svg?style=flat-square)](https://github.com/nventive/terraform-aws-ecs-cluster/releases/latest)

Terraform module to create an ECS Cluster.
Terraform module to provision an ECS Cluster.

---

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg?style=flat-square)](LICENSE) [![Latest Release](https://img.shields.io/github/release/nventive/terraform-aws-ecs-cluster.svg?style=flat-square)](https://github.com/nventive/terraform-aws-ecs-cluster/releases/latest)

Terraform module to create an ECS Cluster.
Terraform module to provision an ECS Cluster.

---

Expand Down Expand Up @@ -83,7 +83,7 @@ module "ecs_cluster" {
|------|--------|---------|
| <a name="module_alb_dns_alias"></a> [alb\_dns\_alias](#module\_alb\_dns\_alias) | cloudposse/route53-alias/aws | 0.13.0 |
| <a name="module_kms_key"></a> [kms\_key](#module\_kms\_key) | cloudposse/kms-key/aws | 0.12.1 |
| <a name="module_lb"></a> [lb](#module\_lb) | git@ssh.dev.azure.com:v3/nventive/Terraform-Modules/aws-lb | v0.1.0 |
| <a name="module_lb"></a> [lb](#module\_lb) | nventive/lb/aws | 1.0.0 |
| <a name="module_this"></a> [this](#module\_this) | cloudposse/label/null | 0.25.0 |
## Resources

Expand Down
3 changes: 2 additions & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,8 @@ data "aws_iam_policy_document" "kms_key" {
}

module "lb" {
source = "git@ssh.dev.azure.com:v3/nventive/Terraform-Modules/aws-lb?ref=v0.1.0"
source = "nventive/lb/aws"
version = "1.0.0"
enabled = local.alb_enabled && local.enabled

subnet_ids = var.subnet_ids
Expand Down

0 comments on commit 6089602

Please sign in to comment.