()
| 265 | } |
| 266 | |
| 267 | func (s *StackDeployer) buildStackParameters() []*cloudformation.Parameter { |
| 268 | return []*cloudformation.Parameter{ |
| 269 | { |
| 270 | ParameterKey: aws.String("StackName"), |
| 271 | ParameterValue: aws.String(s.cfg.Deployment.StackName), |
| 272 | }, |
| 273 | } |
| 274 | } |
| 275 | |
| 276 | func (s *StackDeployer) extractStackOutputs(stack *cloudformation.Stack) *StackOutput { |
| 277 | output := &StackOutput{ |