We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 188d17e commit 4a53d49Copy full SHA for 4a53d49
example/providers.tf
@@ -1,3 +1,14 @@
1
+terraform {
2
+ required_version = ">= 1.0"
3
+
4
+ required_providers {
5
+ aws = {
6
+ source = "hashicorp/aws"
7
+ version = "~> 5.0"
8
+ }
9
10
+}
11
12
provider "aws" {
13
region = var.aws_region
14
example/variables.tf
@@ -1,3 +1,4 @@
variable "aws_region" {
+ type = string
default = "us-east-1"
}
0 commit comments