Skip to content

Commit 8083aa4

Browse files
committed
Fix typo
1 parent 349cabc commit 8083aa4

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ data "aws_caller_identity" "default" {}
77
# Make a topic
88
resource "aws_sns_topic" "default_prefix" {
99
count = var.sns_topic == "" ? 1 : 0
10-
name_prefix = "${var.sns_topic_prefix}elasticsearch-threshold-alerts${var.sns_topc_postfix}"
10+
name_prefix = "${var.sns_topic_prefix}elasticsearch-threshold-alerts${var.sns_topic_postfix}"
1111
}
1212

1313
resource "aws_sns_topic" "default" {

variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ variable "sns_topic_prefix" {
2727
default = ""
2828
}
2929

30-
variable "sns_topc_postfix" {
30+
variable "sns_topic_postfix" {
3131
description = "SNS topic postfix"
3232
type = string
3333
default = ""

0 commit comments

Comments
 (0)