File tree Expand file tree Collapse file tree 5 files changed +45
-1
lines changed
Expand file tree Collapse file tree 5 files changed +45
-1
lines changed Original file line number Diff line number Diff line change 11.venv /
22.DS_Store
33** /__pycache__
4- .vscode /
54scratchpad.md
5+ .aws-sam /
66
77# Local .terraform directories
88** /.terraform /*
Original file line number Diff line number Diff line change 1+ {
2+ "configurations" : [
3+
4+ {
5+ "type" : " aws-sam" ,
6+ "request" : " direct-invoke" ,
7+ "name" : " Invoke Lambda" ,
8+ "invokeTarget" : {
9+ "target" : " template" ,
10+ "templatePath" : " ${workspaceFolder}/template.yaml" ,
11+ "logicalId" : " FlightConsolidatorLambda"
12+ },
13+ "lambda" : {
14+ "runtime" :" python3.11" ,
15+ "payload" : {
16+ "json" : {
17+ "catalog_name" :" flink_kickstarter" ,
18+ "database_name" :" flink_kickstarter" ,
19+ "ccaf_secrets_path" : " /confluent_cloud_resource/flink_kickstarter/flink_compute_pool"
20+ }
21+ }
22+ }
23+ }]
24+ }
Original file line number Diff line number Diff line change 1+ {
2+ "catalog_name" :" flink_kickstarter" ,
3+ "database_name" :" flink_kickstarter" ,
4+ "ccaf_secrets_path" : " /confluent_cloud_resource/flink_kickstarter/flink_compute_pool"
5+ }
Original file line number Diff line number Diff line change @@ -2,3 +2,5 @@ boto3>=1.35.90
22confluent-flink-table-api-python-plugin >= 1.20.42
33setuptools >= 65.5.1
44lxml == 4.9.2
5+
6+ debugpy >= 1.0 ,< 2
Original file line number Diff line number Diff line change 1+ Resources :
2+ FlightConsolidatorLambda :
3+ Type : AWS::Serverless::Function
4+ Properties :
5+ PackageType : Image
6+ ImageConfig :
7+ Command : ["handler.lambda_handler"]
8+ Metadata :
9+ Dockerfile : /Users/jeffreyjonathanjennings/j3/code_spaces/ccaf_kickstarter-flight_consolidator_app-lambda/Dockerfile
10+ DockerContext : /Users/jeffreyjonathanjennings/j3/code_spaces/ccaf_kickstarter-flight_consolidator_app-lambda
11+ DockerTag : Latest
12+
13+
You can’t perform that action at this time.
0 commit comments