Skip to content

Commit

Permalink
Bump dependencies to support v14 (#88)
Browse files Browse the repository at this point in the history
  • Loading branch information
Stepan Rakitin authored Dec 18, 2020
1 parent 0709447 commit 4991400
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 4 deletions.
12 changes: 12 additions & 0 deletions .github/renovate.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"extends": [
"config:base",
":preserveSemverRanges"
],
"labels": ["auto-update"],
"enabledManagers": ["terraform"],
"terraform": {
"ignorePaths": ["**/context.tf", "examples/**"]
}
}

8 changes: 4 additions & 4 deletions main.tf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module "user_label" {
source = "cloudposse/label/null"
version = "0.19.2"
version = "0.22.0"

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

Expand All @@ -9,7 +9,7 @@ module "user_label" {

module "kibana_label" {
source = "cloudposse/label/null"
version = "0.19.2"
version = "0.22.0"

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

Expand Down Expand Up @@ -262,7 +262,7 @@ resource "aws_elasticsearch_domain_policy" "default" {

module "domain_hostname" {
source = "cloudposse/route53-cluster-hostname/aws"
version = "0.7.0"
version = "0.8.0"

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

module "kibana_hostname" {
source = "cloudposse/route53-cluster-hostname/aws"
version = "0.7.0"
version = "0.8.0"

enabled = module.this.enabled && var.kibana_hostname_enabled
dns_name = var.kibana_subdomain_name == "" ? module.kibana_label.id : var.kibana_subdomain_name
Expand Down

0 comments on commit 4991400

Please sign in to comment.