Last active
November 8, 2016 15:40
-
-
Save mweagle/75e71c690d9e0e11b66a7f9433cbd63a to your computer and use it in GitHub Desktop.
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
// Go get the outputs of the GrafanaStack | |
awsSession := session.New() | |
cloudFormationSvc := cloudformation.New(awsSession) | |
params := &cloudformation.DescribeStacksInput{ | |
StackName: aws.String(GrafanaStackName), | |
} | |
outputResults, outputResultsErr := cloudFormationSvc.DescribeStacks(params) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment