Skip to content

Commit

Permalink
add provider resource in terraform examples
Browse files Browse the repository at this point in the history
  • Loading branch information
diodonfrost committed Feb 9, 2019
1 parent eafab56 commit 60f0991
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions examples/autoscaling-schedule/main.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Terraform autoscaling group with lambda scheduler

provider "aws" {
region = "eu-west-3"
}

data "aws_ami" "ubuntu" {
most_recent = true

Expand Down
4 changes: 4 additions & 0 deletions examples/rds-schedule/main.tf
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
provider "aws" {
region = "eu-west-3"
}

# Create rds aurora cluster
resource "aws_rds_cluster" "aurora" {
cluster_identifier = "aurora-cluster-example"
Expand Down

0 comments on commit 60f0991

Please sign in to comment.