Skip to content

Commit 5f69318

Browse files
authored
Merge pull request aws-samples#2904 from matt-boland/matt-boland-feature-lambda-managed-instance-tf
New serverless pattern - Lambda Managed Instances with Terraform
2 parents 2209630 + 63cd8ec commit 5f69318

11 files changed

Lines changed: 1342 additions & 0 deletions

File tree

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
# Terraform files
2+
*.tfstate
3+
*.tfstate.*
4+
*.tfvars
5+
*.tfvars.json
6+
.terraform/
7+
.terraform.lock.hcl
8+
terraform.tfplan
9+
terraform.tfplan.json
10+
11+
# Lambda deployment package
12+
lambda-function.zip
13+
14+
# Test response files
15+
response.json
16+
custom-response.json
17+
output.json
18+
19+
# OS generated files
20+
.DS_Store
21+
.DS_Store?
22+
._*
23+
.Spotlight-V100
24+
.Trashes
25+
ehthumbs.db
26+
Thumbs.db
27+
28+
# IDE files
29+
.vscode/
30+
.idea/
31+
*.swp
32+
*.swo
33+
*~
34+
35+
# Python
36+
__pycache__/
37+
*.py[cod]
38+
*$py.class
39+
*.so
40+
.Python
41+
build/
42+
develop-eggs/
43+
dist/
44+
downloads/
45+
eggs/
46+
.eggs/
47+
lib/
48+
lib64/
49+
parts/
50+
sdist/
51+
var/
52+
wheels/
53+
*.egg-info/
54+
.installed.cfg
55+
*.egg

0 commit comments

Comments
 (0)