├── .gitignore ├── .terraform.lock.hcl ├── LICENSE ├── README.md ├── hello-world └── hello.js ├── main.tf ├── outputs.tf ├── terraform.tf └── variables.tf /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp-education/learn-terraform-lambda-api-gateway/HEAD/.gitignore -------------------------------------------------------------------------------- /.terraform.lock.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp-education/learn-terraform-lambda-api-gateway/HEAD/.terraform.lock.hcl -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp-education/learn-terraform-lambda-api-gateway/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp-education/learn-terraform-lambda-api-gateway/HEAD/README.md -------------------------------------------------------------------------------- /hello-world/hello.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp-education/learn-terraform-lambda-api-gateway/HEAD/hello-world/hello.js -------------------------------------------------------------------------------- /main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp-education/learn-terraform-lambda-api-gateway/HEAD/main.tf -------------------------------------------------------------------------------- /outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp-education/learn-terraform-lambda-api-gateway/HEAD/outputs.tf -------------------------------------------------------------------------------- /terraform.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp-education/learn-terraform-lambda-api-gateway/HEAD/terraform.tf -------------------------------------------------------------------------------- /variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp-education/learn-terraform-lambda-api-gateway/HEAD/variables.tf --------------------------------------------------------------------------------