Skip to content

Commit

Permalink
fix: Update examples with terraform-aws-kms module (terraform-aws-mod…
Browse files Browse the repository at this point in the history
…ules#3)

* update examples with terraform-aws-kms module

* add description
  • Loading branch information
magreenbaum authored and bryantbiggs committed Jul 14, 2022
1 parent 95cde9b commit 2f91525
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
7 changes: 4 additions & 3 deletions examples/complete-oracle/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,10 @@ provider "aws" {
data "aws_caller_identity" "current" {}

locals {
name = "complete-oracle"
region = "eu-west-1"
region2 = "eu-central-1"
name = "complete-oracle"
region = "eu-west-1"
region2 = "eu-central-1"
current_identity = data.aws_caller_identity.current.arn
tags = {
Owner = "user"
Environment = "dev"
Expand Down
7 changes: 4 additions & 3 deletions examples/complete-postgres/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,10 @@ provider "aws" {
data "aws_caller_identity" "current" {}

locals {
name = "complete-postgresql"
region = "eu-west-1"
region2 = "eu-central-1"
name = "complete-postgresql"
region = "eu-west-1"
region2 = "eu-central-1"
current_identity = data.aws_caller_identity.current.arn
tags = {
Owner = "user"
Environment = "dev"
Expand Down

0 comments on commit 2f91525

Please sign in to comment.