Skip to content

Commit

Permalink
Updated directory path
Browse files Browse the repository at this point in the history
  • Loading branch information
seanturner026 committed May 22, 2021
1 parent df985ef commit 72beeb4
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion data.tf
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ data "external" "admin_user_id" {
depends_on = [null_resource.create_admin_user[0]]

program = [
"go", "run", "${path.module}/assets/cognito.go",
"go", "run", "${path.module}/terraform_assets/cognito.go",
"--admin-user-email", var.admin_user_email,
"--user-pool-id", aws_cognito_user_pool.this.id,
]
Expand Down
2 changes: 1 addition & 1 deletion r_cognito.tf
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ resource "aws_cognito_user_pool" "this" {
admin_create_user_config {
invite_message_template {
email_subject = "Moot User Signup"
email_message = file("${path.module}/assets/cognito_invite_template.html")
email_message = file("${path.module}/terraform_assets/cognito_invite_template.html")
sms_message = <<-MESSAGE
username: {username}
password: {####}
Expand Down
2 changes: 1 addition & 1 deletion r_dynamodb.tf
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ resource "aws_dynamodb_table_item" "this" {
range_key = aws_dynamodb_table.this.range_key

item = templatefile(
"${path.module}/assets/dynamodb_put_item_input.json",
"${path.module}/terraform_assets/dynamodb_put_item_input.json",
{
admin_user_email = var.admin_user_email
uuid = data.external.admin_user_id[0].result.user_id
Expand Down
2 changes: 1 addition & 1 deletion terraform_examples/complete/main.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module "moot" {
source = "../../"
source = "github.com/seanturner026/moot.git?ref=terraform-module"

name = "moot"
admin_user_email = var.admin_user_email
Expand Down

0 comments on commit 72beeb4

Please sign in to comment.