Currently, the Lambda function responsible for creating AWS SSM Parameter Store entries in the GitHub AWS Runners Terraform module only supports a hardcoded tag:
await putParameter(${githubRunnerConfig.ssmTokenPath}/${instance}, runnerConfig.data.encoded_jit_config, true, {
tags: [{ Key: 'InstanceId', Value: instance }],
})
This implementation does not allow for additional custom tags to be added via environment variables or configuration. Supporting custom tags would be highly beneficial for organizations that need to:
Currently, the Lambda function responsible for creating AWS SSM Parameter Store entries in the GitHub AWS Runners Terraform module only supports a hardcoded tag:
Ref:
This implementation does not allow for additional custom tags to be added via environment variables or configuration. Supporting custom tags would be highly beneficial for organizations that need to: