Skip to content

Commit 7d0203b

Browse files
authored
Remove back quote from comment and bump release version (#77)
Removes back quote from a comment which causes an error on template generation on HCP UI side.
1 parent e54b1d4 commit 7d0203b

File tree

16 files changed

+42
-42
lines changed

16 files changed

+42
-42
lines changed

examples/hcp-ec2-demo/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ resource "hcp_hvn" "main" {
2626

2727
module "aws_hcp_consul" {
2828
source = "hashicorp/hcp-consul/aws"
29-
version = "~> 0.9.0"
29+
version = "~> 0.9.1"
3030

3131
hvn = hcp_hvn.main
3232
vpc_id = module.vpc.vpc_id
@@ -67,7 +67,7 @@ resource "local_file" "ssh_key" {
6767

6868
module "aws_ec2_consul_client" {
6969
source = "hashicorp/hcp-consul/aws//modules/hcp-ec2-client"
70-
version = "~> 0.9.0"
70+
version = "~> 0.9.1"
7171

7272
allowed_http_cidr_blocks = ["0.0.0.0/0"]
7373
allowed_ssh_cidr_blocks = ["0.0.0.0/0"]

examples/hcp-ecs-demo/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ resource "hcp_hvn" "main" {
2828

2929
module "aws_hcp_consul" {
3030
source = "hashicorp/hcp-consul/aws"
31-
version = "~> 0.9.0"
31+
version = "~> 0.9.1"
3232

3333
hvn = hcp_hvn.main
3434
vpc_id = module.vpc.vpc_id
@@ -49,7 +49,7 @@ resource "hcp_consul_cluster_root_token" "token" {
4949

5050
module "aws_ecs_cluster" {
5151
source = "hashicorp/hcp-consul/aws//modules/hcp-ecs-client"
52-
version = "~> 0.9.0"
52+
version = "~> 0.9.1"
5353

5454
allowed_http_cidr_blocks = ["0.0.0.0/0"]
5555
allowed_ssh_cidr_blocks = ["0.0.0.0/0"]

examples/hcp-eks-demo/main.tf

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ resource "hcp_hvn" "main" {
6565
# Note: Uncomment the below module to setup peering for connecting to a private HCP Consul cluster
6666
# module "aws_hcp_consul" {
6767
# source = "hashicorp/hcp-consul/aws"
68-
# version = "~> 0.9.0"
68+
# version = "~> 0.9.1"
6969
#
7070
# hvn = hcp_hvn.main
7171
# vpc_id = module.vpc.vpc_id
@@ -88,11 +88,11 @@ resource "hcp_consul_cluster_root_token" "token" {
8888

8989
module "eks_consul_client" {
9090
source = "hashicorp/hcp-consul/aws//modules/hcp-eks-client"
91-
version = "~> 0.9.0"
91+
version = "~> 0.9.1"
9292

9393
boostrap_acl_token = hcp_consul_cluster_root_token.token.secret_id
9494
cluster_id = hcp_consul_cluster.main.cluster_id
95-
# strip out `https://` from the public url
95+
# strip out url scheme from the public url
9696
consul_hosts = tolist([substr(hcp_consul_cluster.main.consul_public_endpoint_url, 8, -1)])
9797
consul_version = hcp_consul_cluster.main.consul_version
9898
datacenter = hcp_consul_cluster.main.datacenter
@@ -107,7 +107,7 @@ module "eks_consul_client" {
107107
module "demo_app" {
108108
count = var.install_demo_app ? 1 : 0
109109
source = "hashicorp/hcp-consul/aws//modules/k8s-demo-app"
110-
version = "~> 0.9.0"
110+
version = "~> 0.9.1"
111111

112112
depends_on = [module.eks_consul_client]
113113
}

hcp-ui-templates/ec2-existing-vpc/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ resource "hcp_hvn" "main" {
4545

4646
module "aws_hcp_consul" {
4747
source = "hashicorp/hcp-consul/aws"
48-
version = "~> 0.9.0"
48+
version = "~> 0.9.1"
4949

5050
hvn = hcp_hvn.main
5151
vpc_id = local.vpc_id
@@ -86,7 +86,7 @@ resource "local_file" "ssh_key" {
8686

8787
module "aws_ec2_consul_client" {
8888
source = "hashicorp/hcp-consul/aws//modules/hcp-ec2-client"
89-
version = "~> 0.9.0"
89+
version = "~> 0.9.1"
9090

9191
allowed_http_cidr_blocks = ["0.0.0.0/0"]
9292
allowed_ssh_cidr_blocks = ["0.0.0.0/0"]

hcp-ui-templates/ec2/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ resource "hcp_hvn" "main" {
6060

6161
module "aws_hcp_consul" {
6262
source = "hashicorp/hcp-consul/aws"
63-
version = "~> 0.9.0"
63+
version = "~> 0.9.1"
6464

6565
hvn = hcp_hvn.main
6666
vpc_id = module.vpc.vpc_id
@@ -101,7 +101,7 @@ resource "local_file" "ssh_key" {
101101

102102
module "aws_ec2_consul_client" {
103103
source = "hashicorp/hcp-consul/aws//modules/hcp-ec2-client"
104-
version = "~> 0.9.0"
104+
version = "~> 0.9.1"
105105

106106
allowed_http_cidr_blocks = ["0.0.0.0/0"]
107107
allowed_ssh_cidr_blocks = ["0.0.0.0/0"]

hcp-ui-templates/ecs-existing-vpc/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ resource "hcp_hvn" "main" {
4545

4646
module "aws_hcp_consul" {
4747
source = "hashicorp/hcp-consul/aws"
48-
version = "~> 0.9.0"
48+
version = "~> 0.9.1"
4949

5050
hvn = hcp_hvn.main
5151
vpc_id = local.vpc_id
@@ -66,7 +66,7 @@ resource "hcp_consul_cluster_root_token" "token" {
6666

6767
module "aws_ecs_cluster" {
6868
source = "hashicorp/hcp-consul/aws//modules/hcp-ecs-client"
69-
version = "~> 0.9.0"
69+
version = "~> 0.9.1"
7070

7171
allowed_http_cidr_blocks = ["0.0.0.0/0"]
7272
allowed_ssh_cidr_blocks = ["0.0.0.0/0"]

hcp-ui-templates/ecs/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ resource "hcp_hvn" "main" {
6060

6161
module "aws_hcp_consul" {
6262
source = "hashicorp/hcp-consul/aws"
63-
version = "~> 0.9.0"
63+
version = "~> 0.9.1"
6464

6565
hvn = hcp_hvn.main
6666
vpc_id = module.vpc.vpc_id
@@ -81,7 +81,7 @@ resource "hcp_consul_cluster_root_token" "token" {
8181

8282
module "aws_ecs_cluster" {
8383
source = "hashicorp/hcp-consul/aws//modules/hcp-ecs-client"
84-
version = "~> 0.9.0"
84+
version = "~> 0.9.1"
8585

8686
allowed_http_cidr_blocks = ["0.0.0.0/0"]
8787
allowed_ssh_cidr_blocks = ["0.0.0.0/0"]

hcp-ui-templates/eks-existing-vpc/main.tf

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ resource "hcp_hvn" "main" {
110110
# Note: Uncomment the below module to setup peering for connecting to a private HCP Consul cluster
111111
# module "aws_hcp_consul" {
112112
# source = "hashicorp/hcp-consul/aws"
113-
# version = "~> 0.9.0"
113+
# version = "~> 0.9.1"
114114
#
115115
# hvn = hcp_hvn.main
116116
# vpc_id = local.vpc_id
@@ -133,11 +133,11 @@ resource "hcp_consul_cluster_root_token" "token" {
133133

134134
module "eks_consul_client" {
135135
source = "hashicorp/hcp-consul/aws//modules/hcp-eks-client"
136-
version = "~> 0.9.0"
136+
version = "~> 0.9.1"
137137

138138
boostrap_acl_token = hcp_consul_cluster_root_token.token.secret_id
139139
cluster_id = hcp_consul_cluster.main.cluster_id
140-
# strip out `https://` from the public url
140+
# strip out url scheme from the public url
141141
consul_hosts = tolist([substr(hcp_consul_cluster.main.consul_public_endpoint_url, 8, -1)])
142142
consul_version = hcp_consul_cluster.main.consul_version
143143
datacenter = hcp_consul_cluster.main.datacenter
@@ -152,7 +152,7 @@ module "eks_consul_client" {
152152
module "demo_app" {
153153
count = local.install_demo_app ? 1 : 0
154154
source = "hashicorp/hcp-consul/aws//modules/k8s-demo-app"
155-
version = "~> 0.9.0"
155+
version = "~> 0.9.1"
156156

157157
depends_on = [module.eks_consul_client]
158158
}

hcp-ui-templates/eks/main.tf

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ resource "hcp_hvn" "main" {
128128
# Note: Uncomment the below module to setup peering for connecting to a private HCP Consul cluster
129129
# module "aws_hcp_consul" {
130130
# source = "hashicorp/hcp-consul/aws"
131-
# version = "~> 0.9.0"
131+
# version = "~> 0.9.1"
132132
#
133133
# hvn = hcp_hvn.main
134134
# vpc_id = module.vpc.vpc_id
@@ -151,11 +151,11 @@ resource "hcp_consul_cluster_root_token" "token" {
151151

152152
module "eks_consul_client" {
153153
source = "hashicorp/hcp-consul/aws//modules/hcp-eks-client"
154-
version = "~> 0.9.0"
154+
version = "~> 0.9.1"
155155

156156
boostrap_acl_token = hcp_consul_cluster_root_token.token.secret_id
157157
cluster_id = hcp_consul_cluster.main.cluster_id
158-
# strip out `https://` from the public url
158+
# strip out url scheme from the public url
159159
consul_hosts = tolist([substr(hcp_consul_cluster.main.consul_public_endpoint_url, 8, -1)])
160160
consul_version = hcp_consul_cluster.main.consul_version
161161
datacenter = hcp_consul_cluster.main.datacenter
@@ -170,7 +170,7 @@ module "eks_consul_client" {
170170
module "demo_app" {
171171
count = local.install_demo_app ? 1 : 0
172172
source = "hashicorp/hcp-consul/aws//modules/k8s-demo-app"
173-
version = "~> 0.9.0"
173+
version = "~> 0.9.1"
174174

175175
depends_on = [module.eks_consul_client]
176176
}

scripts/module_version.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/bash
22

3-
old="0\.8\.10"
4-
new=0.9.0
3+
old="0\.9\.0"
4+
new=0.9.1
55

66
for platform in ec2 ecs eks; do
77
file=examples/hcp-$platform-demo/main.tf

0 commit comments

Comments
 (0)