Skip to content

Commit caf1406

Browse files
author
Joshua Timmons
authored
Bump to get patch fix for template (#91)
* Bump to get patch fix for template * Remove tags var * Fix version constraint * Fix to 0.12.0 * Bump to 1.12.1
1 parent 45882f2 commit caf1406

File tree

18 files changed

+44
-42
lines changed

18 files changed

+44
-42
lines changed

examples/hcp-ec2-demo/main.tf

Lines changed: 3 additions & 3 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.11.0"
29+
version = "~> 0.12.1"
3030

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

6464
module "aws_ec2_consul_client" {
6565
source = "hashicorp/hcp-consul/aws//modules/hcp-ec2-client"
66-
version = "~> 0.11.0"
66+
version = "~> 0.12.1"
6767

6868
allowed_http_cidr_blocks = ["0.0.0.0/0"]
6969
allowed_ssh_cidr_blocks = ["0.0.0.0/0"]
@@ -85,7 +85,7 @@ module "hashicups" {
8585
count = var.install_demo_app ? 1 : 0
8686

8787
source = "hashicorp/hcp-consul/aws//modules/ec2-demo-app"
88-
version = "~> 0.11.0"
88+
version = "~> 0.12.1"
8989

9090
depends_on = [
9191
module.aws_ec2_consul_client

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.11.0"
31+
version = "~> 0.12.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.11.0"
52+
version = "~> 0.12.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: 3 additions & 3 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.11.0"
68+
# version = "~> 0.12.1"
6969
#
7070
# hvn = hcp_hvn.main
7171
# vpc_id = module.vpc.vpc_id
@@ -88,7 +88,7 @@ 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.11.0"
91+
version = "~> 0.12.1"
9292

9393
boostrap_acl_token = hcp_consul_cluster_root_token.token.secret_id
9494
cluster_id = hcp_consul_cluster.main.cluster_id
@@ -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.11.0"
110+
version = "~> 0.12.1"
111111

112112
depends_on = [module.eks_consul_client]
113113
}

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

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

5050
module "aws_hcp_consul" {
5151
source = "hashicorp/hcp-consul/aws"
52-
version = "~> 0.11.0"
52+
version = "~> 0.12.1"
5353

5454
hvn = hcp_hvn.main
5555
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.11.0"
89+
version = "~> 0.12.1"
9090

9191
allowed_http_cidr_blocks = ["0.0.0.0/0"]
9292
allowed_ssh_cidr_blocks = ["0.0.0.0/0"]
@@ -108,7 +108,7 @@ module "hashicups" {
108108
count = local.install_demo_app ? 1 : 0
109109

110110
source = "hashicorp/hcp-consul/aws//modules/ec2-demo-app"
111-
version = "~> 0.11.0"
111+
version = "~> 0.12.1"
112112

113113
depends_on = [
114114
module.aws_ec2_consul_client

hcp-ui-templates/ec2/main.tf

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

6565
module "aws_hcp_consul" {
6666
source = "hashicorp/hcp-consul/aws"
67-
version = "~> 0.11.0"
67+
version = "~> 0.12.1"
6868

6969
hvn = hcp_hvn.main
7070
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.11.0"
104+
version = "~> 0.12.1"
105105

106106
allowed_http_cidr_blocks = ["0.0.0.0/0"]
107107
allowed_ssh_cidr_blocks = ["0.0.0.0/0"]
@@ -123,7 +123,7 @@ module "hashicups" {
123123
count = local.install_demo_app ? 1 : 0
124124

125125
source = "hashicorp/hcp-consul/aws//modules/ec2-demo-app"
126-
version = "~> 0.11.0"
126+
version = "~> 0.12.1"
127127

128128
depends_on = [
129129
module.aws_ec2_consul_client

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.11.0"
48+
version = "~> 0.12.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.11.0"
69+
version = "~> 0.12.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.11.0"
63+
version = "~> 0.12.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.11.0"
84+
version = "~> 0.12.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: 3 additions & 3 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.11.0"
113+
# version = "~> 0.12.1"
114114
#
115115
# hvn = hcp_hvn.main
116116
# vpc_id = local.vpc_id
@@ -133,7 +133,7 @@ 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.11.0"
136+
version = "~> 0.12.1"
137137

138138
boostrap_acl_token = hcp_consul_cluster_root_token.token.secret_id
139139
cluster_id = hcp_consul_cluster.main.cluster_id
@@ -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.11.0"
155+
version = "~> 0.12.1"
156156

157157
depends_on = [module.eks_consul_client]
158158
}

hcp-ui-templates/eks/main.tf

Lines changed: 3 additions & 3 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.11.0"
131+
# version = "~> 0.12.1"
132132
#
133133
# hvn = hcp_hvn.main
134134
# vpc_id = module.vpc.vpc_id
@@ -151,7 +151,7 @@ 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.11.0"
154+
version = "~> 0.12.1"
155155

156156
boostrap_acl_token = hcp_consul_cluster_root_token.token.secret_id
157157
cluster_id = hcp_consul_cluster.main.cluster_id
@@ -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.11.0"
173+
version = "~> 0.12.1"
174174

175175
depends_on = [module.eks_consul_client]
176176
}

modules/hcp-ecs-client/variables.tf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,3 +78,4 @@ variable "region" {
7878
variable "security_group_id" {
7979
type = string
8080
}
81+

0 commit comments

Comments
 (0)