Skip to content

Commit cad3297

Browse files
committed
add tf version pinning and region
1 parent 20f08f7 commit cad3297

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

main.tf

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22
# AWS LAMBDA CERTBOT FOR CLOUDFLARE DOMAINS
33
# -----------------------------------------------------------------
44

5+
terraform {
6+
required_version = "~> 0.11.11"
7+
}
8+
9+
provider "aws" {
10+
region = "${var.aws_region}"
11+
}
12+
513
# Create random two digit number suffix (used to prevent duplicate names)
614
resource "random_integer" "id" {
715
keepers = {

0 commit comments

Comments
 (0)