terraform: use correct security group option for jump host (#2715)

This commit is contained in:
3u13r 2023-12-13 18:05:25 +01:00 committed by GitHub
parent ae00b0a198
commit 1d6e5ca3ea
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 7 additions and 7 deletions

View file

@ -23,7 +23,7 @@ variable "ports" {
type = list(number)
}
variable "security_group_id" {
description = "Security group to attach to the jump host"
type = string
variable "security_groups" {
type = list(string)
description = "List of IDs of the security groups for an instance."
}