Hi, I'd like to understand how to use the download-lambda module. The documentation is not clear about how to use it:
https://github.com/github-aws-runners/terraform-aws-github-runner/tree/main/modules/download-lambda#usages
I tried this in my terraform project and it doesn't work:
module "download_lambda" {
source = "github.com/github-aws-runners/terraform-aws-github-runner//modules/download-lambda"
lambdas = [
{
name = "webhook"
tag = "v6.10.1"
},
{
name = "runners"
tag = "v6.10.1"
},
{
name = "runner-binaries-syncer"
tag = "v6.10.1"
}
]
}
Could you help me out and maybe update the documentation please?