Skip to content
This repository was archived by the owner on Oct 15, 2024. It is now read-only.

Commit 3e400c2

Browse files
committed
pagerduty-sns: remove interpolation
no longer needed
1 parent e6cd68c commit 3e400c2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pagerduty_sns/main.tf

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
resource "aws_sns_topic" "topic" {
2-
name = "${var.name}"
2+
name = var.name
33
}
44

55
resource "aws_sns_topic_subscription" "subscription" {
6-
topic_arn = "${aws_sns_topic.topic.arn}"
6+
topic_arn = aws_sns_topic.topic.arn
77
protocol = "https"
8-
endpoint = "${var.pagerduty_integration_url}"
8+
endpoint = var.pagerduty_integration_url
99
endpoint_auto_confirms = true
1010
}

0 commit comments

Comments
 (0)