Skip to content

Instantly share code, notes, and snippets.

@seikurou
Created April 10, 2025 21:17
Show Gist options
  • Select an option

  • Save seikurou/adcf5e1a775555707e8ef913516f849a to your computer and use it in GitHub Desktop.

Select an option

Save seikurou/adcf5e1a775555707e8ef913516f849a to your computer and use it in GitHub Desktop.
resource "aws_lambda_function" "my-function" {
function_name = "my-function"
package_type = "Image"
role = var.lambda_iam_role_arn
image_uri = "${var.my-repo-url}:latest"
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment