-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add output handling and contract naming
- Loading branch information
1 parent
0538d26
commit 24e370f
Showing
4 changed files
with
172 additions
and
11 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
[#ftl] | ||
|
||
[@addTask | ||
type=AWS_CFN_WRITE_STACK_OUTPUTS_TO_FILE_TASK_TYPE | ||
properties=[ | ||
{ | ||
"Type" : "Description", | ||
"Value" : "Get the outputs of a stack and write them to file" | ||
} | ||
] | ||
attributes=[ | ||
{ | ||
"Names": "StackName", | ||
"Description": "The name to use for the stack", | ||
"Types": STRING_TYPE, | ||
"Mandatory": true | ||
}, | ||
{ | ||
"Names" : "Region", | ||
"Description" : "The name of the region to use for the aws session", | ||
"Types" : STRING_TYPE | ||
}, | ||
{ | ||
"Names" : "AWSAccessKeyId", | ||
"Description" : "The AWS Access Key Id with access to decrypt", | ||
"Types" : STRING_TYPE | ||
}, | ||
{ | ||
"Names" : "AWSSecretAccessKey", | ||
"Description" : "The AWS Secret Access Key with access to decrypt", | ||
"Types" : STRING_TYPE | ||
}, | ||
{ | ||
"Names" : "AWSSessionToken", | ||
"Description" : "The AWS Session Token with access to decrypt", | ||
"Types" : STRING_TYPE | ||
}, | ||
{ | ||
"Names": "FilePath", | ||
"Description": "The path to where the file should be written", | ||
"Types" : STRING_TYPE, | ||
"Mandatory" : true | ||
} | ||
] | ||
/] |
This file contains 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
This file contains 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