Skip to content

Commit

Permalink
Updated list type for subs
Browse files Browse the repository at this point in the history
  • Loading branch information
bczoma committed Feb 5, 2024
1 parent e398e67 commit 0a2807c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions internal/gen-template/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ variable "endpoint_name" {
}

variable "queue_subscription_topics" {
description = "List of queue subscription topics. Only valid if endpoint ype is 'queue'."
type = list
description = "List of queue subscription topics. Only valid if endpoint type is 'queue'."
type = list(string)
default = []
}

Expand Down
4 changes: 2 additions & 2 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ variable "endpoint_name" {
}

variable "queue_subscription_topics" {
description = "List of queue subscription topics. Only valid if endpoint ype is 'queue'."
type = list(any)
description = "List of queue subscription topics. Only valid if endpoint type is 'queue'."
type = list(string)
default = []
}

Expand Down

0 comments on commit 0a2807c

Please sign in to comment.