Sam Ainsworth
Results
1
comments of
Sam Ainsworth
For anyone who needs a workaround, this is what I do: ``` module "foo" { source = "terraform-aws-modules/lambda/aws" function_name = "foo" image_uri = "${var.image_uri}:${data.aws_ssm_parameter.image_tag.value}" [...] } resource "aws_ssm_parameter" "image_tag" {...