2016-06-02 04:08:12 -05:00
|
|
|
package aws
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
|
|
|
|
"github.com/aws/aws-sdk-go/aws"
|
|
|
|
"github.com/aws/aws-sdk-go/service/cloudformation"
|
2016-09-21 13:18:01 -05:00
|
|
|
"github.com/hashicorp/errwrap"
|
2016-06-02 04:08:12 -05:00
|
|
|
"github.com/hashicorp/terraform/helper/schema"
|
|
|
|
)
|
|
|
|
|
|
|
|
func dataSourceAwsCloudFormationStack() *schema.Resource {
|
|
|
|
return &schema.Resource{
|
|
|
|
Read: dataSourceAwsCloudFormationStackRead,
|
|
|
|
|
|
|
|
Schema: map[string]*schema.Schema{
|
|
|
|
"name": {
|
|
|
|
Type: schema.TypeString,
|
|
|
|
Required: true,
|
|
|
|
},
|
|
|
|
"template_body": {
|
2016-09-14 05:42:13 -05:00
|
|
|
Type: schema.TypeString,
|
|
|
|
Computed: true,
|
|
|
|
StateFunc: func(v interface{}) string {
|
|
|
|
json, _ := normalizeJsonString(v)
|
|
|
|
return json
|
|
|
|
},
|
2016-06-02 04:08:12 -05:00
|
|
|
},
|
|
|
|
"capabilities": {
|
|
|
|
Type: schema.TypeSet,
|
|
|
|
Computed: true,
|
|
|
|
Elem: &schema.Schema{Type: schema.TypeString},
|
|
|
|
Set: schema.HashString,
|
|
|
|
},
|
|
|
|
"description": {
|
|
|
|
Type: schema.TypeString,
|
|
|
|
Computed: true,
|
|
|
|
},
|
|
|
|
"disable_rollback": {
|
|
|
|
Type: schema.TypeBool,
|
|
|
|
Computed: true,
|
|
|
|
},
|
|
|
|
"notification_arns": {
|
|
|
|
Type: schema.TypeSet,
|
|
|
|
Computed: true,
|
|
|
|
Elem: &schema.Schema{Type: schema.TypeString},
|
|
|
|
Set: schema.HashString,
|
|
|
|
},
|
|
|
|
"parameters": {
|
|
|
|
Type: schema.TypeMap,
|
|
|
|
Computed: true,
|
|
|
|
},
|
|
|
|
"outputs": {
|
|
|
|
Type: schema.TypeMap,
|
|
|
|
Computed: true,
|
|
|
|
},
|
|
|
|
"timeout_in_minutes": {
|
|
|
|
Type: schema.TypeInt,
|
|
|
|
Computed: true,
|
|
|
|
},
|
|
|
|
"tags": {
|
|
|
|
Type: schema.TypeMap,
|
|
|
|
Computed: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func dataSourceAwsCloudFormationStackRead(d *schema.ResourceData, meta interface{}) error {
|
|
|
|
conn := meta.(*AWSClient).cfconn
|
|
|
|
name := d.Get("name").(string)
|
|
|
|
input := cloudformation.DescribeStacksInput{
|
|
|
|
StackName: aws.String(name),
|
|
|
|
}
|
|
|
|
|
|
|
|
out, err := conn.DescribeStacks(&input)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("Failed describing CloudFormation stack (%s): %s", name, err)
|
|
|
|
}
|
|
|
|
if l := len(out.Stacks); l != 1 {
|
|
|
|
return fmt.Errorf("Expected 1 CloudFormation stack (%s), found %d", name, l)
|
|
|
|
}
|
|
|
|
stack := out.Stacks[0]
|
|
|
|
d.SetId(*stack.StackId)
|
|
|
|
|
|
|
|
d.Set("description", stack.Description)
|
|
|
|
d.Set("disable_rollback", stack.DisableRollback)
|
|
|
|
d.Set("timeout_in_minutes", stack.TimeoutInMinutes)
|
|
|
|
|
|
|
|
if len(stack.NotificationARNs) > 0 {
|
|
|
|
d.Set("notification_arns", schema.NewSet(schema.HashString, flattenStringList(stack.NotificationARNs)))
|
|
|
|
}
|
|
|
|
|
|
|
|
d.Set("parameters", flattenAllCloudFormationParameters(stack.Parameters))
|
|
|
|
d.Set("tags", flattenCloudFormationTags(stack.Tags))
|
|
|
|
d.Set("outputs", flattenCloudFormationOutputs(stack.Outputs))
|
|
|
|
|
|
|
|
if len(stack.Capabilities) > 0 {
|
|
|
|
d.Set("capabilities", schema.NewSet(schema.HashString, flattenStringList(stack.Capabilities)))
|
|
|
|
}
|
|
|
|
|
|
|
|
tInput := cloudformation.GetTemplateInput{
|
|
|
|
StackName: aws.String(name),
|
|
|
|
}
|
|
|
|
tOut, err := conn.GetTemplate(&tInput)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2016-09-21 13:18:01 -05:00
|
|
|
template, err := normalizeJsonString(*tOut.TemplateBody)
|
|
|
|
if err != nil {
|
|
|
|
return errwrap.Wrapf("template body contains an invalid JSON: {{err}}", err)
|
2016-09-14 05:42:13 -05:00
|
|
|
}
|
2016-09-21 13:18:01 -05:00
|
|
|
d.Set("template_body", template)
|
2016-06-02 04:08:12 -05:00
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|