Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
1dfa83a
feat: add TenancyConfig to ACK Lambda Controller
acaremrullah Jan 14, 2026
eefc3c5
add tenancy immutable and ignore fields to generator files. And, upda…
acaremrullah Jan 22, 2026
9d91304
add output of code genarator with new fields
acaremrullah Jan 22, 2026
09f770b
Update apis/v1alpha1/generator.yaml
acaremrullah Feb 4, 2026
8a1f548
Update apis/v1alpha1/generator.yaml
acaremrullah Feb 4, 2026
bb42cdd
Run build command with new ignored resources
acaremrullah Feb 4, 2026
c9b8b4a
fix: add tenancyConfig to hooks.go
acaremrullah Feb 13, 2026
b9d375e
fix: add tenancyConfig with return error to hooks.go
acaremrullah Feb 13, 2026
dec424e
chore: fix attribution.md
acaremrullah Feb 13, 2026
6304304
fix: change test resource names
acaremrullah Feb 14, 2026
7ee00bc
test: define concurreny
acaremrullah Feb 15, 2026
111d34b
test: fix test file
acaremrullah Feb 15, 2026
1cb0272
test: fix test assert
acaremrullah Feb 15, 2026
a03a927
test: fix test assert
acaremrullah Feb 15, 2026
b9e4616
fix: add tenancyConfig in status field too
acaremrullah Feb 15, 2026
8c4a2df
test: fix
acaremrullah Feb 15, 2026
587b765
test: fix assert
acaremrullah Feb 15, 2026
2f70efd
upgrade boto version to support tenancyConfig
acaremrullah Feb 15, 2026
6346d82
revert kustomization.yaml
acaremrullah Feb 15, 2026
8c9f1d2
remove tenancyConfig from status
acaremrullah Feb 18, 2026
cb520b1
Merge branch 'main' of github.com:acaremrullah/lambda-controller
acaremrullah Feb 18, 2026
b8ae809
fix ack generate metadata
acaremrullah Feb 19, 2026
7a95c30
Merge branch 'main' into main
acaremrullah Feb 19, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions ATTRIBUTION.md
Original file line number Diff line number Diff line change
Expand Up @@ -2893,9 +2893,7 @@ Subdependencies:
* `github.com/aws/aws-sdk-go-v2/internal/endpoints/v2`
* `github.com/aws/smithy-go`

#### github.com/aws/aws-sdk-go-v2

License Identifier: Apache-2.0

#### github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream

Expand Down
12 changes: 6 additions & 6 deletions apis/v1alpha1/ack-generate-metadata.yaml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
ack_generate_info:
build_date: "2026-02-19T00:11:08Z"
build_hash: af61bc1478baf08196fb6e2c81590518a754e45e
build_date: "2026-02-19T10:05:58Z"
build_hash: fc172a972627384bbe20716ba13d4ccdeb3edfdf
go_version: go1.25.6
version: v0.57.0-9-gaf61bc1
api_directory_checksum: 3cd2161708148476a53b44162a9e095bf92f91d3
version: v0.57.0-1-gfc172a9
api_directory_checksum: 1c591dbcfead77930eee228c722c937db77b6bff
api_version: v1alpha1
aws_sdk_go_version: v1.38.0
aws_sdk_go_version: v1.41.0
generator_config_info:
file_checksum: c74fa09655df9a0e57fc6ac8606e4f797f799355
file_checksum: fd3b3146f9f11a93daa2e10090308298b6b6c6a0
original_file_name: generator.yaml
last_modification:
reason: API generation
4 changes: 2 additions & 2 deletions apis/v1alpha1/alias.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

239 changes: 190 additions & 49 deletions apis/v1alpha1/enums.go

Large diffs are not rendered by default.

29 changes: 15 additions & 14 deletions apis/v1alpha1/event_source_mapping.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 7 additions & 2 deletions apis/v1alpha1/function.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions apis/v1alpha1/function_url_config.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 15 additions & 0 deletions apis/v1alpha1/generator.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
ignore:
resource_names:
- CapacityProvider
# Function
# Alias
# CodeSigningConfig
Expand Down Expand Up @@ -29,6 +30,18 @@ ignore:
- VpcConfig.Ipv6AllowedForDualStack
- AddPermissionInput.FunctionName # We grab this from the Alias resource
- AddPermissionInput.Qualifier # We grab this from the Alias resource
- PublishVersionInput.PublishTo
- PublishVersionOutput.PublishTo
- PublishVersionOutput.CapacityProviderConfig
- PublishVersionOutput.DurableConfig
- AddPermissionInput.InvokedViaFunctionUrl
- CreateFunctionInput.PublishTo
- CreateFunctionInput.CapacityProviderConfig
- CreateFunctionOutput.CapacityProviderConfig
- CreateFunctionInput.DurableConfig
- CreateFunctionOutput.DurableConfig
- CreateFunctionOutput.ConfigSha256
- PublishVersionOutput.ConfigSha256
operations:
GetFunction:
output_wrapper_field_path: Configuration
Expand Down Expand Up @@ -100,6 +113,8 @@ resources:
from:
operation: PutFunctionConcurrency
path: ReservedConcurrentExecutions
TenancyConfig:
is_immutable: true
Code:
compare:
is_ignored: false
Expand Down
Loading