Skip to content

Commit 4991400

Browse files
author
Stepan Rakitin
authored
Bump dependencies to support v14 (#88)
1 parent 0709447 commit 4991400

File tree

2 files changed

+16
-4
lines changed

2 files changed

+16
-4
lines changed

.github/renovate.json

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"extends": [
3+
"config:base",
4+
":preserveSemverRanges"
5+
],
6+
"labels": ["auto-update"],
7+
"enabledManagers": ["terraform"],
8+
"terraform": {
9+
"ignorePaths": ["**/context.tf", "examples/**"]
10+
}
11+
}
12+

main.tf

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module "user_label" {
22
source = "cloudposse/label/null"
3-
version = "0.19.2"
3+
version = "0.22.0"
44

55
attributes = compact(concat(module.this.attributes, ["user"]))
66

@@ -9,7 +9,7 @@ module "user_label" {
99

1010
module "kibana_label" {
1111
source = "cloudposse/label/null"
12-
version = "0.19.2"
12+
version = "0.22.0"
1313

1414
attributes = compact(concat(module.this.attributes, ["kibana"]))
1515

@@ -262,7 +262,7 @@ resource "aws_elasticsearch_domain_policy" "default" {
262262

263263
module "domain_hostname" {
264264
source = "cloudposse/route53-cluster-hostname/aws"
265-
version = "0.7.0"
265+
version = "0.8.0"
266266

267267
enabled = module.this.enabled && var.domain_hostname_enabled
268268
dns_name = var.elasticsearch_subdomain_name == "" ? module.this.id : var.elasticsearch_subdomain_name
@@ -275,7 +275,7 @@ module "domain_hostname" {
275275

276276
module "kibana_hostname" {
277277
source = "cloudposse/route53-cluster-hostname/aws"
278-
version = "0.7.0"
278+
version = "0.8.0"
279279

280280
enabled = module.this.enabled && var.kibana_hostname_enabled
281281
dns_name = var.kibana_subdomain_name == "" ? module.kibana_label.id : var.kibana_subdomain_name

0 commit comments

Comments
 (0)