mirror of
https://github.com/farcasclaudiu/terraform-course.git
synced 2026-06-22 09:01:59 +03:00
11 lines
171 B
Terraform
11 lines
171 B
Terraform
variable "parameters" {
|
|
type = list(object({
|
|
prefix = string
|
|
parameters = list(object({
|
|
name = string
|
|
value = string
|
|
}))
|
|
}))
|
|
default = []
|
|
}
|