Skip to content

Commit

Permalink
chore: disable Renovate version updates in examples/ (#1219)
Browse files Browse the repository at this point in the history
## Description

There are many provider and module updates in the examples. They are not
needed as they don't provide any value and clutter the history. Thus the
upper bound of the version constraint is removed.
  • Loading branch information
kayman-mk authored Dec 21, 2024
1 parent 986bb9d commit 4764c72
Show file tree
Hide file tree
Showing 10 changed files with 34 additions and 34 deletions.
4 changes: 2 additions & 2 deletions examples/runner-certificates/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ data "aws_availability_zones" "available" {
# kics-scan ignore-line
module "vpc" {
source = "terraform-aws-modules/vpc/aws"
version = "5.17.0"
version = ">= 5.16.0"

name = "vpc-${var.environment}"
cidr = "10.0.0.0/16"
Expand All @@ -26,7 +26,7 @@ module "vpc" {

module "vpc_endpoints" {
source = "terraform-aws-modules/vpc/aws//modules/vpc-endpoints"
version = "5.17.0"
version = ">= 5.16.0"

vpc_id = module.vpc.vpc_id

Expand Down
10 changes: 5 additions & 5 deletions examples/runner-certificates/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -5,23 +5,23 @@ terraform {
required_providers {
aws = {
source = "hashicorp/aws"
version = "5.82.1"
version = ">= 5.78.0"
}
local = {
source = "hashicorp/local"
version = "2.5.2"
version = ">= 2.5.2"
}
null = {
source = "hashicorp/null"
version = "3.2.3"
version = ">= 3.2.3"
}
tls = {
source = "hashicorp/tls"
version = "4.0.6"
version = ">= 4.0.6"
}
random = {
source = "hashicorp/random"
version = "3.6.3"
version = ">= 3.6.3"
}
}
}
4 changes: 2 additions & 2 deletions examples/runner-default/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ data "aws_security_group" "default" {
# kics-scan ignore-line
module "vpc" {
source = "terraform-aws-modules/vpc/aws"
version = "5.17.0"
version = ">= 5.16.0"

name = "vpc-${var.environment}"
cidr = "10.0.0.0/16"
Expand All @@ -31,7 +31,7 @@ module "vpc" {

module "vpc_endpoints" {
source = "terraform-aws-modules/vpc/aws//modules/vpc-endpoints"
version = "5.17.0"
version = ">= 5.16.0"

vpc_id = module.vpc.vpc_id

Expand Down
10 changes: 5 additions & 5 deletions examples/runner-default/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -5,23 +5,23 @@ terraform {
required_providers {
aws = {
source = "hashicorp/aws"
version = "5.82.1"
version = ">= 5.78.0"
}
local = {
source = "hashicorp/local"
version = "2.5.2"
version = ">= 2.5.2"
}
null = {
source = "hashicorp/null"
version = "3.2.3"
version = ">= 3.2.3"
}
tls = {
source = "hashicorp/tls"
version = "4.0.6"
version = ">= 4.0.6"
}
random = {
source = "hashicorp/random"
version = "3.6.3"
version = ">= 3.6.3"
}
}
}
4 changes: 2 additions & 2 deletions examples/runner-docker/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ data "aws_availability_zones" "available" {
# kics-scan ignore-line
module "vpc" {
source = "terraform-aws-modules/vpc/aws"
version = "5.17.0"
version = ">= 5.16.0"

name = "vpc-${var.environment}"
cidr = "10.1.0.0/16"
Expand All @@ -22,7 +22,7 @@ module "vpc" {

module "vpc_endpoints" {
source = "terraform-aws-modules/vpc/aws//modules/vpc-endpoints"
version = "5.17.0"
version = ">= 5.16.0"

vpc_id = module.vpc.vpc_id

Expand Down
10 changes: 5 additions & 5 deletions examples/runner-docker/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -5,23 +5,23 @@ terraform {
required_providers {
aws = {
source = "hashicorp/aws"
version = "5.82.1"
version = ">= 5.78.0"
}
local = {
source = "hashicorp/local"
version = "2.5.2"
version = ">= 2.5.2"
}
null = {
source = "hashicorp/null"
version = "3.2.3"
version = ">= 3.2.3"
}
tls = {
source = "hashicorp/tls"
version = "4.0.6"
version = ">= 4.0.6"
}
random = {
source = "hashicorp/random"
version = "3.6.3"
version = ">= 3.6.3"
}
}
}
4 changes: 2 additions & 2 deletions examples/runner-fleeting-plugin/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ data "aws_security_group" "default" {
# kics-scan ignore-line
module "vpc" {
source = "terraform-aws-modules/vpc/aws"
version = "5.17.0"
version = ">= 5.16.0"

name = "vpc-${var.environment}"
cidr = "10.0.0.0/16"
Expand All @@ -31,7 +31,7 @@ module "vpc" {

module "vpc_endpoints" {
source = "terraform-aws-modules/vpc/aws//modules/vpc-endpoints"
version = "5.17.0"
version = ">= 5.16.0"

vpc_id = module.vpc.vpc_id

Expand Down
10 changes: 5 additions & 5 deletions examples/runner-fleeting-plugin/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -5,23 +5,23 @@ terraform {
required_providers {
aws = {
source = "hashicorp/aws"
version = "5.82.1"
version = ">= 5.78.0"
}
local = {
source = "hashicorp/local"
version = "2.5.2"
version = ">= 2.5.2"
}
null = {
source = "hashicorp/null"
version = "3.2.3"
version = ">= 3.2.3"
}
tls = {
source = "hashicorp/tls"
version = "4.0.6"
version = ">= 4.0.6"
}
random = {
source = "hashicorp/random"
version = "3.6.3"
version = ">= 3.6.3"
}
}
}
2 changes: 1 addition & 1 deletion examples/runner-public/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ data "aws_availability_zones" "available" {
# kics-scan ignore-line
module "vpc" {
source = "terraform-aws-modules/vpc/aws"
version = "5.17.0"
version = ">= 5.16.0"

name = "vpc-${var.environment}"
cidr = "10.1.0.0/16"
Expand Down
10 changes: 5 additions & 5 deletions examples/runner-public/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -5,23 +5,23 @@ terraform {
required_providers {
aws = {
source = "hashicorp/aws"
version = "5.82.1"
version = ">= 5.78.0"
}
local = {
source = "hashicorp/local"
version = "2.5.2"
version = ">= 2.5.2"
}
null = {
source = "hashicorp/null"
version = "3.2.3"
version = ">= 3.2.3"
}
tls = {
source = "hashicorp/tls"
version = "4.0.6"
version = ">= 4.0.6"
}
random = {
source = "hashicorp/random"
version = "3.6.3"
version = ">= 3.6.3"
}
}
}

0 comments on commit 4764c72

Please sign in to comment.