OlgierdEthon
Results
2
comments of
OlgierdEthon
Our current workaround is to fix the issue with an `external` script: ```tf data "external" "extract_server_key" { program = ["python3", "${path.module}/keys_shim.py"] query = { keys = join("|", devcycle_environment.environment.sdk_keys) } }...
Actually a colleague pointed out a much simpler solution (doesn't require firing up the `external` machinery): ```terraform server_key = [for k in devcycle_environment.environment.sdk_keys : k if strcontains(k, "server")][0] ``` Re...