Skip to content

Commit a20306b

Browse files
Merge pull request #6 from infraspecdev/update-provider-version
update terraform provider versions
2 parents 48facd8 + 5da9da5 commit a20306b

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

rds.tf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ resource "aws_security_group" "gitlab_rds" {
2727

2828
module "gitlab_pg" {
2929
source = "terraform-aws-modules/rds/aws"
30+
version = "~> 5.2.3"
3031
identifier = local.gitlab_rds_cluster_name
3132
create_db_instance = true
3233
create_db_subnet_group = true

versions.tf

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,22 @@
11
terraform {
2-
required_version = ">= 1.3"
2+
required_version = "~> 1.3.0"
33

44
required_providers {
55
aws = {
66
source = "hashicorp/aws"
7-
version = ">= 4.40"
7+
version = ">= 4.49.0"
88
}
99
null = {
1010
source = "hashicorp/null"
1111
version = ">= 3.2.1"
1212
}
13+
local = {
14+
source = "hashicorp/local"
15+
version = ">= 2.3.0"
16+
}
17+
template = {
18+
source = "hashicorp/template"
19+
version = ">= 2.2.0"
20+
}
1321
}
1422
}

0 commit comments

Comments
 (0)