File tree Expand file tree Collapse file tree 5 files changed +18
-14
lines changed Expand file tree Collapse file tree 5 files changed +18
-14
lines changed Original file line number Diff line number Diff line change @@ -124,20 +124,21 @@ Available targets:
124
124
125
125
```
126
126
<!-- markdownlint-restore -->
127
+ <!-- markdownlint-disable -->
127
128
## Requirements
128
129
129
130
| Name | Version |
130
131
| ------| ---------|
131
- | terraform | >= 0.12.0, < 0.14.0 |
132
- | aws | ~ > 2.0 |
132
+ | terraform | >= 0.12.0 |
133
+ | aws | >= 2.0 |
133
134
| null | ~ > 2.0 |
134
135
| template | ~ > 2.0 |
135
136
136
137
## Providers
137
138
138
139
| Name | Version |
139
140
| ------| ---------|
140
- | aws | ~ > 2.0 |
141
+ | aws | >= 2.0 |
141
142
| null | ~ > 2.0 |
142
143
143
144
## Inputs
@@ -213,6 +214,7 @@ Available targets:
213
214
| kibana\_ hostname | Kibana hostname |
214
215
| security\_ group\_ id | Security Group ID to control access to the Elasticsearch domain |
215
216
217
+ <!-- markdownlint-restore -->
216
218
217
219
218
220
Original file line number Diff line number Diff line change
1
+ <!-- markdownlint-disable -->
1
2
## Requirements
2
3
3
4
| Name | Version |
4
5
| ------| ---------|
5
- | terraform | >= 0.12.0, < 0.14.0 |
6
- | aws | ~ > 2.0 |
6
+ | terraform | >= 0.12.0 |
7
+ | aws | >= 2.0 |
7
8
| null | ~ > 2.0 |
8
9
| template | ~ > 2.0 |
9
10
10
11
## Providers
11
12
12
13
| Name | Version |
13
14
| ------| ---------|
14
- | aws | ~ > 2.0 |
15
+ | aws | >= 2.0 |
15
16
| null | ~ > 2.0 |
16
17
17
18
## Inputs
87
88
| kibana\_ hostname | Kibana hostname |
88
89
| security\_ group\_ id | Security Group ID to control access to the Elasticsearch domain |
89
90
91
+ <!-- markdownlint-restore -->
Original file line number Diff line number Diff line change @@ -3,15 +3,15 @@ provider "aws" {
3
3
}
4
4
5
5
module "vpc" {
6
- source = " git::https://github.com/cloudposse/terraform-aws-vpc.git?ref=tags/0.10 .0"
6
+ source = " git::https://github.com/cloudposse/terraform-aws-vpc.git?ref=tags/0.17 .0"
7
7
namespace = var. namespace
8
8
stage = var. stage
9
9
name = var. name
10
10
cidr_block = " 172.16.0.0/16"
11
11
}
12
12
13
13
module "subnets" {
14
- source = " git::https://github.com/cloudposse/terraform-aws-dynamic-subnets.git?ref=tags/0.19 .0"
14
+ source = " git::https://github.com/cloudposse/terraform-aws-dynamic-subnets.git?ref=tags/0.30 .0"
15
15
availability_zones = var. availability_zones
16
16
namespace = var. namespace
17
17
stage = var. stage
Original file line number Diff line number Diff line change 1
1
module "label" {
2
- source = " git::https://github.com/cloudposse/terraform-null-label.git?ref=tags/0.17.0 "
2
+ source = " git::https://github.com/cloudposse/terraform-null-label.git?ref=tags/0.19.2 "
3
3
enabled = var. enabled
4
4
namespace = var. namespace
5
5
name = var. name
@@ -12,7 +12,7 @@ module "label" {
12
12
}
13
13
14
14
module "user_label" {
15
- source = " git::https://github.com/cloudposse/terraform-null-label.git?ref=tags/0.17.0 "
15
+ source = " git::https://github.com/cloudposse/terraform-null-label.git?ref=tags/0.19.2 "
16
16
enabled = var. enabled
17
17
namespace = var. namespace
18
18
name = var. name
@@ -248,7 +248,7 @@ resource "aws_elasticsearch_domain_policy" "default" {
248
248
}
249
249
250
250
module "domain_hostname" {
251
- source = " git::https://github.com/cloudposse/terraform-aws-route53-cluster-hostname.git?ref=tags/0.5 .0"
251
+ source = " git::https://github.com/cloudposse/terraform-aws-route53-cluster-hostname.git?ref=tags/0.7 .0"
252
252
enabled = var. enabled && var. dns_zone_id != " " ? true : false
253
253
name = var. elasticsearch_subdomain_name == " " ? var. name : var. elasticsearch_subdomain_name
254
254
ttl = 60
@@ -257,7 +257,7 @@ module "domain_hostname" {
257
257
}
258
258
259
259
module "kibana_hostname" {
260
- source = " git::https://github.com/cloudposse/terraform-aws-route53-cluster-hostname.git?ref=tags/0.5 .0"
260
+ source = " git::https://github.com/cloudposse/terraform-aws-route53-cluster-hostname.git?ref=tags/0.7 .0"
261
261
enabled = var. enabled && var. dns_zone_id != " " ? true : false
262
262
name = var. kibana_subdomain_name
263
263
ttl = 60
Original file line number Diff line number Diff line change 1
1
terraform {
2
- required_version = " >= 0.12.0, < 0.14.0 "
2
+ required_version = " >= 0.12.0"
3
3
4
4
required_providers {
5
- aws = " ~> 2.0"
5
+ aws = " >= 2.0"
6
6
template = " ~> 2.0"
7
7
null = " ~> 2.0"
8
8
}
You can’t perform that action at this time.
0 commit comments