Skip to content

Commit a9617bf

Browse files
author
Joshua Timmons
authored
Bump to 0.8.9 (#67)
1 parent 68adff7 commit a9617bf

File tree

16 files changed

+37
-37
lines changed

16 files changed

+37
-37
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.8.8"
29+
version = "~> 0.8.9"
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.8.8"
70+
version = "~> 0.8.9"
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.8.8"
31+
version = "~> 0.8.9"
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.8.8"
52+
version = "~> 0.8.9"
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: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ resource "hcp_hvn" "main" {
6363

6464
module "aws_hcp_consul" {
6565
source = "hashicorp/hcp-consul/aws"
66-
version = "~> 0.8.8"
66+
version = "~> 0.8.9"
6767

6868
hvn = hcp_hvn.main
6969
vpc_id = module.vpc.vpc_id
@@ -85,7 +85,7 @@ resource "hcp_consul_cluster_root_token" "token" {
8585

8686
module "eks_consul_client" {
8787
source = "hashicorp/hcp-consul/aws//modules/hcp-eks-client"
88-
version = "~> 0.8.8"
88+
version = "~> 0.8.9"
8989

9090
boostrap_acl_token = hcp_consul_cluster_root_token.token.secret_id
9191
cluster_id = hcp_consul_cluster.main.cluster_id
@@ -105,7 +105,7 @@ module "eks_consul_client" {
105105
module "demo_app" {
106106
count = var.install_demo_app ? 1 : 0
107107
source = "hashicorp/hcp-consul/aws//modules/k8s-demo-app"
108-
version = "~> 0.8.8"
108+
version = "~> 0.8.9"
109109

110110
depends_on = [module.eks_consul_client]
111111
}

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.8.8"
48+
version = "~> 0.8.9"
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.8.8"
89+
version = "~> 0.8.9"
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.8.8"
63+
version = "~> 0.8.9"
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.8.8"
104+
version = "~> 0.8.9"
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.8.8"
48+
version = "~> 0.8.9"
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.8.8"
69+
version = "~> 0.8.9"
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.8.8"
63+
version = "~> 0.8.9"
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.8.8"
84+
version = "~> 0.8.9"
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: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ resource "hcp_hvn" "main" {
109109

110110
module "aws_hcp_consul" {
111111
source = "hashicorp/hcp-consul/aws"
112-
version = "~> 0.8.8"
112+
version = "~> 0.8.9"
113113

114114
hvn = hcp_hvn.main
115115
vpc_id = local.vpc_id
@@ -131,7 +131,7 @@ resource "hcp_consul_cluster_root_token" "token" {
131131

132132
module "eks_consul_client" {
133133
source = "hashicorp/hcp-consul/aws//modules/hcp-eks-client"
134-
version = "~> 0.8.8"
134+
version = "~> 0.8.9"
135135

136136
boostrap_acl_token = hcp_consul_cluster_root_token.token.secret_id
137137
cluster_id = hcp_consul_cluster.main.cluster_id
@@ -151,7 +151,7 @@ module "eks_consul_client" {
151151
module "demo_app" {
152152
count = local.install_demo_app ? 1 : 0
153153
source = "hashicorp/hcp-consul/aws//modules/k8s-demo-app"
154-
version = "~> 0.8.8"
154+
version = "~> 0.8.9"
155155

156156
depends_on = [module.eks_consul_client]
157157
}

hcp-ui-templates/eks/main.tf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ resource "hcp_hvn" "main" {
126126

127127
module "aws_hcp_consul" {
128128
source = "hashicorp/hcp-consul/aws"
129-
version = "~> 0.8.8"
129+
version = "~> 0.8.9"
130130

131131
hvn = hcp_hvn.main
132132
vpc_id = module.vpc.vpc_id
@@ -148,7 +148,7 @@ resource "hcp_consul_cluster_root_token" "token" {
148148

149149
module "eks_consul_client" {
150150
source = "hashicorp/hcp-consul/aws//modules/hcp-eks-client"
151-
version = "~> 0.8.8"
151+
version = "~> 0.8.9"
152152

153153
boostrap_acl_token = hcp_consul_cluster_root_token.token.secret_id
154154
cluster_id = hcp_consul_cluster.main.cluster_id
@@ -168,7 +168,7 @@ module "eks_consul_client" {
168168
module "demo_app" {
169169
count = local.install_demo_app ? 1 : 0
170170
source = "hashicorp/hcp-consul/aws//modules/k8s-demo-app"
171-
version = "~> 0.8.8"
171+
version = "~> 0.8.9"
172172

173173
depends_on = [module.eks_consul_client]
174174
}

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\.7"
4-
new=0.8.8
3+
old="0\.8\.8"
4+
new=0.8.9
55

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

0 commit comments

Comments
 (0)