Skip to content

Commit

Permalink
Fix hashicups demo module path (#90)
Browse files Browse the repository at this point in the history
  • Loading branch information
Joshua Timmons authored Mar 24, 2023
1 parent 5bacc35 commit 45882f2
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion examples/hcp-ec2-demo/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ module "aws_ec2_consul_client" {
module "hashicups" {
count = var.install_demo_app ? 1 : 0

source = "hashicorp/hcp-consul/aws/modules/ec2-demo-app"
source = "hashicorp/hcp-consul/aws//modules/ec2-demo-app"
version = "~> 0.11.0"

depends_on = [
Expand Down
2 changes: 1 addition & 1 deletion hcp-ui-templates/ec2-existing-vpc/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ module "aws_ec2_consul_client" {
module "hashicups" {
count = local.install_demo_app ? 1 : 0

source = "hashicorp/hcp-consul/aws/modules/ec2-demo-app"
source = "hashicorp/hcp-consul/aws//modules/ec2-demo-app"
version = "~> 0.11.0"

depends_on = [
Expand Down
2 changes: 1 addition & 1 deletion hcp-ui-templates/ec2/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ module "aws_ec2_consul_client" {
module "hashicups" {
count = local.install_demo_app ? 1 : 0

source = "hashicorp/hcp-consul/aws/modules/ec2-demo-app"
source = "hashicorp/hcp-consul/aws//modules/ec2-demo-app"
version = "~> 0.11.0"

depends_on = [
Expand Down
2 changes: 1 addition & 1 deletion test/hcp/testdata/ec2-existing-vpc.golden
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ module "aws_ec2_consul_client" {
module "hashicups" {
count = local.install_demo_app ? 1 : 0

source = "hashicorp/hcp-consul/aws/modules/ec2-demo-app"
source = "hashicorp/hcp-consul/aws//modules/ec2-demo-app"
version = "~> 0.11.0"

depends_on = [
Expand Down
2 changes: 1 addition & 1 deletion test/hcp/testdata/ec2.golden
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ module "aws_ec2_consul_client" {
module "hashicups" {
count = local.install_demo_app ? 1 : 0

source = "hashicorp/hcp-consul/aws/modules/ec2-demo-app"
source = "hashicorp/hcp-consul/aws//modules/ec2-demo-app"
version = "~> 0.11.0"

depends_on = [
Expand Down

0 comments on commit 45882f2

Please sign in to comment.