From 5fe8d4a61d88fbffd54f4d18de7895b7aae6a014 Mon Sep 17 00:00:00 2001 From: Rauneet Verma Date: Wed, 29 Apr 2026 18:21:45 +0530 Subject: [PATCH] fix: update ack_acm_controller output schema format Co-Authored-By: Claude Opus 4.6 (1M context) --- outputs/ack_acm_controller/output.facets.yaml | 46 ++++++++++--------- 1 file changed, 24 insertions(+), 22 deletions(-) diff --git a/outputs/ack_acm_controller/output.facets.yaml b/outputs/ack_acm_controller/output.facets.yaml index e1e3aab4..14b9dcb9 100644 --- a/outputs/ack_acm_controller/output.facets.yaml +++ b/outputs/ack_acm_controller/output.facets.yaml @@ -1,26 +1,28 @@ -name: '@outputs/ack_acm_controller' -properties: +name: ack_acm_controller +out: type: object + title: ACK ACM Controller + description: ACK ACM Controller Attributes properties: attributes: - type: object - properties: - namespace: - description: Kubernetes namespace where the controller is deployed - type: string - release_name: - description: Helm release name - type: string - chart_version: - description: Helm chart version - type: string - role_arn: - description: IAM role ARN used by the controller - type: string - helm_release_id: - description: Helm release ID - type: string + namespace: + required: true + type: string + description: Kubernetes namespace where the controller is deployed + release_name: + required: true + type: string + description: Helm release name + chart_version: + required: true + type: string + description: Helm chart version + role_arn: + required: true + type: string + description: IAM role ARN used by the controller + helm_release_id: + required: true + type: string + description: Helm release ID interfaces: - type: object - properties: {} -providers: []