Skip to content

Commit

Permalink
fix: remove "current" argument from aws_region (#40)
Browse files Browse the repository at this point in the history
* fix: remove "current" argument from aws_region

* fix: CF output notation
  • Loading branch information
rfvermut authored and aknysh committed May 7, 2019
1 parent 221219b commit c0f8bc4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 1 addition & 3 deletions main.tf
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
data "aws_region" "default" {
current = true
}
data "aws_region" "default" {}

module "label" {
source = "git::https://github.com/cloudposse/terraform-null-label.git?ref=tags/0.3.1"
Expand Down
2 changes: 1 addition & 1 deletion outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@ output "security_group_id" {
}

output "sns_topic_arn" {
value = "${aws_cloudformation_stack.sns.outputs.TopicArn}"
value = "${aws_cloudformation_stack.sns.outputs["TopicArn"]}"
description = "Backup notification SNS topic ARN"
}

0 comments on commit c0f8bc4

Please sign in to comment.