mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-08 15:13:56 -06:00
78768e00f2
Fixes: #11266 ``` % make testacc TEST=./builtin/providers/aws TESTARGS='-run=TestAccAWSCloudFormation_basic' ==> Checking that code complies with gofmt requirements... go generate $(go list ./... | grep -v /terraform/vendor/) 2017/03/09 01:39:16 Generated command/internal_plugin_list.go TF_ACC=1 go test ./builtin/providers/aws -v -run=TestAccAWSCloudFormation_basic -timeout 120m === RUN TestAccAWSCloudFormation_basic --- PASS: TestAccAWSCloudFormation_basic (89.38s) PASS ok github.com/hashicorp/terraform/builtin/providers/aws 89.416s ```
123 lines
3.0 KiB
Go
123 lines
3.0 KiB
Go
package aws
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/aws/aws-sdk-go/aws"
|
|
"github.com/aws/aws-sdk-go/service/cloudformation"
|
|
"github.com/hashicorp/errwrap"
|
|
"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": {
|
|
Type: schema.TypeString,
|
|
Computed: true,
|
|
StateFunc: func(v interface{}) string {
|
|
template, _ := normalizeCloudFormationTemplate(v)
|
|
return template
|
|
},
|
|
},
|
|
"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,
|
|
},
|
|
"iam_role_arn": {
|
|
Type: schema.TypeString,
|
|
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)
|
|
d.Set("iam_role_arn", stack.RoleARN)
|
|
|
|
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
|
|
}
|
|
|
|
template, err := normalizeCloudFormationTemplate(*tOut.TemplateBody)
|
|
if err != nil {
|
|
return errwrap.Wrapf("template body contains an invalid JSON or YAML: {{err}}", err)
|
|
}
|
|
d.Set("template_body", template)
|
|
|
|
return nil
|
|
}
|