feat(agent_association): add configurable description input for notification channels#439
Merged
agustincelentano merged 1 commit intoJul 15, 2026
Conversation
…ication channels Expose a new optional `description` variable in the parameter storage, scope and service agent association modules, wiring it into the nullplatform_notification_channel resource. The parameter storage module previously hardcoded its channel description; it now reads from var.description (default "") for consistency across the three modules. Consumers relying on the old hardcoded text must set it explicitly after upgrading.
gdrojas
approved these changes
Jul 15, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
Exposes a new optional
descriptioninput in the three agent association modules, wiring it into thenullplatform_notification_channelresource:parameter_storage_definition_agent_associationscope_definition_agent_associationservice_definition_agent_associationThe variable is identical across the three (
type = string,default = "") for consistency.Why
The channel
descriptionwas only available (hardcoded) in the parameter storage module, and absent in scope/service. This lets consumers set a meaningful, per-channel description from the module call (e.g. driven from afor_eachcatalog).Backward compatibility
"Notification channel to handle parameter storage and retrieval"). It now reads fromvar.descriptionwithdefault = "". Consumers relying on the old text must set it explicitly after upgrading, otherwise the channel description becomes empty.Scope and service modules had no description before, so for them this is purely additive.
Testing
Validated end-to-end against a real nullplatform account (
implementation-awsbinding) by pointing the four channel modules at this branch:tofu validate/tofu fmt✅tofu apply: 9 channels updated in-place, 0 destroyed — the API accepted thedescriptionPATCH.READMEs (terraform-docs
## Inputstables) updated manually to include the new input, respecting the alphabetical sort configured in.terraform-docs.yml.🤖 Generated with Claude Code