Open masbolgankezderim opened 6 months ago
function_name = "var.function_name"
description = "My awesome lambda function 5555555"
create_package = false
image_uri = "var.image_uri"
var.function_name
and var.image_uri
are never called, since they are wrapped in double quotes and thus, handled as string.
I think the following should work:
function_name = var.function_name
description = "My awesome lambda function 5555555"
create_package = false
image_uri = var.image_uri
Hi, also, variables can be set through env variables TF_name
https://developer.hashicorp.com/terraform/cli/config/environment-variables#tf_var_name
Describe the bug I cannot set variables via gitlab-ci
terragrunt.hcl
terragrunt.hcl in root folder
Nice to have
Screenshot
Versions