Skip to content
This repository has been archived by the owner on Dec 29, 2021. It is now read-only.

Commit

Permalink
Fix region
Browse files Browse the repository at this point in the history
  • Loading branch information
scholzj committed Sep 28, 2017
1 parent ea54253 commit b4c2892
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ Although it can be run on its own, the main value is that it can be included int
module "tagging-lambda" {
source = "scholzj/tagging-lambda/aws"
aws_region = "eu-east-1"
aws_region = "us-east-1"
name = "my-application"
search_tag_key = "kubernetes.io/cluster/aws-k8s"
search_tag_value = "owned"
Expand Down
2 changes: 1 addition & 1 deletion example.tfvars
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
aws_region = "eu-east-1"
aws_region = "us-east-1"

# Used for naming related resources
lambda_name = "my-k8s"
Expand Down
2 changes: 1 addition & 1 deletion variables.tf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
variable "aws_region" {
description = "Region where Cloud Formation is created"
default = "eu-east-1"
default = "us-east-1"
}

variable "lambda_name" {
Expand Down

0 comments on commit b4c2892

Please sign in to comment.