diff --git a/.github/renovate.json b/.github/renovate.json new file mode 100644 index 0000000..ae4f0aa --- /dev/null +++ b/.github/renovate.json @@ -0,0 +1,12 @@ +{ + "extends": [ + "config:base", + ":preserveSemverRanges" + ], + "labels": ["auto-update"], + "enabledManagers": ["terraform"], + "terraform": { + "ignorePaths": ["**/context.tf", "examples/**"] + } +} + diff --git a/main.tf b/main.tf index 39c01b4..e218f41 100644 --- a/main.tf +++ b/main.tf @@ -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"])) @@ -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"])) @@ -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 @@ -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