We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 349cabc commit 8083aa4Copy full SHA for 8083aa4
2 files changed
main.tf
@@ -7,7 +7,7 @@ data "aws_caller_identity" "default" {}
7
# Make a topic
8
resource "aws_sns_topic" "default_prefix" {
9
count = var.sns_topic == "" ? 1 : 0
10
- name_prefix = "${var.sns_topic_prefix}elasticsearch-threshold-alerts${var.sns_topc_postfix}"
+ name_prefix = "${var.sns_topic_prefix}elasticsearch-threshold-alerts${var.sns_topic_postfix}"
11
}
12
13
resource "aws_sns_topic" "default" {
variables.tf
@@ -27,7 +27,7 @@ variable "sns_topic_prefix" {
27
default = ""
28
29
30
-variable "sns_topc_postfix" {
+variable "sns_topic_postfix" {
31
description = "SNS topic postfix"
32
type = string
33
0 commit comments