I would like to retrieve the value of the following pin_connection_details
and pin_task_position
from the variable below:
How do I retrieve it?
Below is the variable from which these values need to be retrieved:
variable "config_settings" {
description = "Configuration settings for the Pinpoint"
type = list(object({
name = string
area = string
version = string
pin_config = object({
pin_encrypt = optional(bool, false)
pin_mode = optional(bool, false)
pin_types = map(object({
pin_name = string
pin_port = string
pin_connection_details = optional(string, null)
timer = object({
start = string
stop = string
})
}))
})
pin_tasks = list(object({
pin_task_name = string
pin_task_position = optional(string, null)
}))
}))
}
How can I resolve this issue?
I extended a bit your example to show how it can be achied
you can play with it using 'terraform plan'
Hope it helps