Skip to content

Commit 5b6fc57

Browse files
authored
Restrict Terraform and provider versions
The AWS provider has been growing in size to the point we had to increase the Deployment Helper Lambda's ephemeral storage. Pinning to a provider version should prevent this being an issue in production.
1 parent e584933 commit 5b6fc57

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

modules/deployment-helper-regional/src/terraform-stacks/AWS_Backup_BackupVault.tf

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
terraform {
2+
required_version = ">= 1.11.4"
3+
4+
required_providers {
5+
aws = {
6+
source = "hashicorp/aws"
7+
version = "= 6.14.1"
8+
}
9+
}
10+
}
11+
112
variable "AccessPolicy" {
213
type = string
314
default = ""

0 commit comments

Comments
 (0)