Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

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

Select an option

Save seikurou/4b0ba104fb292c01b581c286607bcf4a 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}:my-function"
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment