File tree Expand file tree Collapse file tree 2 files changed +11
-2
lines changed Expand file tree Collapse file tree 2 files changed +11
-2
lines changed Original file line number Diff line number Diff line change @@ -27,6 +27,7 @@ resource "aws_security_group" "gitlab_rds" {
2727
2828module "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
Original file line number Diff line number Diff line change 11terraform {
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}
You can’t perform that action at this time.
0 commit comments