Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
6 changes: 3 additions & 3 deletions apis/v1alpha1/ack-generate-metadata.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
ack_generate_info:
build_date: "2026-05-19T18:43:12Z"
build_hash: e581e886276bd781409a3fb11fa665ea31de17d4
build_date: "2026-05-27T23:46:24Z"
build_hash: 30bdd708ddc94889d99d4d34ac5217ada38f9fc7
go_version: go1.26.3
version: v0.59.1
version: v0.59.1-3-g30bdd70
api_directory_checksum: fcb205ac280ed1b0f107a291e5ea43d93c0991e9
api_version: v1alpha1
aws_sdk_go_version: v1.32.6
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module github.com/aws-controllers-k8s/iam-controller
go 1.25.0

require (
github.com/aws-controllers-k8s/runtime v0.59.1
github.com/aws-controllers-k8s/runtime v0.59.2-0.20260527214203-0e3ba692e1c5
github.com/aws/aws-sdk-go v1.49.0
github.com/aws/aws-sdk-go-v2 v1.34.0
github.com/aws/aws-sdk-go-v2/service/iam v1.38.8
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
github.com/Masterminds/semver/v3 v3.4.0 h1:Zog+i5UMtVoCU8oKka5P7i9q9HgrJeGzI9SA1Xbatp0=
github.com/Masterminds/semver/v3 v3.4.0/go.mod h1:4V+yj/TJE1HU9XfppCwVMZq3I84lprf4nC11bSS5beM=
github.com/aws-controllers-k8s/runtime v0.59.1 h1:7UDKl9/dif8oNjxx/5Z5ciUfuyn86MS4BvoG9LqF6h4=
github.com/aws-controllers-k8s/runtime v0.59.1/go.mod h1:ljWD1IdtVx/qC7C4lVobF4vLNhno/xX5A78BOke1Ksk=
github.com/aws-controllers-k8s/runtime v0.59.2-0.20260527214203-0e3ba692e1c5 h1:TuqQF4BHtWFvBeShoTlCLSdkqSbBNM1yRn4EYCCj48Y=
github.com/aws-controllers-k8s/runtime v0.59.2-0.20260527214203-0e3ba692e1c5/go.mod h1:ljWD1IdtVx/qC7C4lVobF4vLNhno/xX5A78BOke1Ksk=
github.com/aws/aws-sdk-go v1.49.0 h1:g9BkW1fo9GqKfwg2+zCD+TW/D36Ux+vtfJ8guF4AYmY=
github.com/aws/aws-sdk-go v1.49.0/go.mod h1:LF8svs817+Nz+DmiMQKTO3ubZ/6IaTpq3TjupRn3Eqk=
github.com/aws/aws-sdk-go-v2 v1.34.0 h1:9iyL+cjifckRGEVpRKZP3eIxVlL06Qk1Tk13vreaVQU=
Expand Down
1 change: 1 addition & 0 deletions helm/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,7 @@ spec:
- "$(FEATURE_GATES)"
{{- end }}
- --enable-carm={{ .Values.enableCARM }}
- --enable-cross-namespace={{ .Values.enableCrossNamespace }}
image: {{ .Values.image.repository }}:{{ .Values.image.tag }}
imagePullPolicy: {{ .Values.image.pullPolicy }}
name: controller
Expand Down
5 changes: 5 additions & 0 deletions helm/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -274,6 +274,11 @@
"description": "Parameter to enable or disable cross account resource management.",
"type": "boolean",
"default": true
},
"enableCrossNamespace": {
"description": "Enable cross-namespace behavior (resource references, secret references, field exports). When false, the controller rejects any operation that crosses namespace boundaries.",
"type": "boolean",
"default": true
},
"serviceAccount": {
"description": "ServiceAccount settings",
Expand Down
5 changes: 5 additions & 0 deletions helm/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -181,6 +181,11 @@ leaderElection:
# Enable Cross Account Resource Management (default = true). Set this to false to disable cross account resource management.
enableCARM: true

# Enable cross-namespace behavior including resource references, secret references,
# and field exports (default = true). When false, the controller rejects any operation
# that crosses namespace boundaries.
enableCrossNamespace: true

# Configuration for feature gates. These are optional controller features that
# can be individually enabled ("true") or disabled ("false") by adding key/value
# pairs below.
Expand Down
33 changes: 30 additions & 3 deletions pkg/resource/group/references.go

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

28 changes: 28 additions & 0 deletions pkg/resource/group/sdk.go

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

33 changes: 30 additions & 3 deletions pkg/resource/instance_profile/references.go

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

28 changes: 28 additions & 0 deletions pkg/resource/instance_profile/sdk.go

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

28 changes: 28 additions & 0 deletions pkg/resource/open_id_connect_provider/sdk.go

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

28 changes: 28 additions & 0 deletions pkg/resource/policy/sdk.go

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

Loading