We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5f954b9 commit 8f36845Copy full SHA for 8f36845
examples/elb/providers.tf
@@ -0,0 +1,10 @@
1
+provider "aws" {
2
+ region = "${var.region}"
3
+
4
+ # Make it faster by skipping something
5
+ skip_get_ec2_platforms = true
6
+ skip_metadata_api_check = true
7
+ skip_region_validation = true
8
+ skip_credentials_validation = true
9
+ skip_requesting_account_id = true
10
+}
examples/elb/variable.tf
@@ -0,0 +1,7 @@
+variable "environment" {
+ default = "one"
+variable "region" {
+ default = "us-west-2"
0 commit comments