You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am an frequent user of Rain for managing our AWS CloudFormation stacks in production. I have identified a potential enhancement that I believe could improve the user experience of Rain.
Proposed Feature:
I suggest adding a feature that allows users to easily view the tags and parameters values of an existing CloudFormation stack directly through Rain. This feature would allow to output and format it to match the rain config file used with the deploycommand.
Currently, retrieving these details can be somewhat cumbersome, often requiring additional AWS CLI commands or using the AWS console and formating them in your text editor.
Proposed Implementation:
Enhance the cat command by introducing a --config parameter. This parameter would display the current values of the stack's parameters and tags, formatted similarly to the input configuration used by the deploy command.
I'm working in my fork on this feature, if you are ok i can create a pull request linked to this feature request.
Note :
For those of you who are reading this and just want to view the existing parameters, it's already possible using the rain ls -a <stack> command like :
rain ls -a my-stack-name
The text was updated successfully, but these errors were encountered:
vjeantet
added a commit
to vjeantet/rain
that referenced
this issue
Jan 13, 2024
* add --config option to cat command
* add ConfigFromStack in the dc package, which returns a yaml string containing the tags and parameters of the given stack
* add tests for dc.ConfigFromStack
related to aws-cloudformation#237
Hello ,
I am an frequent user of Rain for managing our AWS CloudFormation stacks in production. I have identified a potential enhancement that I believe could improve the user experience of Rain.
Proposed Feature:
I suggest adding a feature that allows users to easily view the tags and parameters values of an existing CloudFormation stack directly through Rain. This feature would allow to output and format it to match the rain config file used with the
deploy
command.Currently, retrieving these details can be somewhat cumbersome, often requiring additional AWS CLI commands or using the AWS console and formating them in your text editor.
Proposed Implementation:
Enhance the
cat
command by introducing a--config
parameter. This parameter would display the current values of the stack's parameters and tags, formatted similarly to the input configuration used by thedeploy
command.I'm working in my fork on this feature, if you are ok i can create a pull request linked to this feature request.
Note :
For those of you who are reading this and just want to view the existing parameters, it's already possible using the
rain ls -a <stack>
command like :The text was updated successfully, but these errors were encountered: