From fc942c620213858cfae5885431c897204d3a14f3 Mon Sep 17 00:00:00 2001 From: = Date: Wed, 26 Apr 2017 09:25:10 -0600 Subject: [PATCH 1/2] refactor the read --- builtin/providers/opc/resource_ip_address_association.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builtin/providers/opc/resource_ip_address_association.go b/builtin/providers/opc/resource_ip_address_association.go index de7dec4db..59fcde858 100644 --- a/builtin/providers/opc/resource_ip_address_association.go +++ b/builtin/providers/opc/resource_ip_address_association.go @@ -82,7 +82,7 @@ func resourceOPCIPAddressAssociationRead(d *schema.ResourceData, meta interface{ name := d.Id() getInput := compute.GetIPAddressAssociationInput{ - name, + Name: name, } result, err := client.GetIPAddressAssociation(&getInput) if err != nil { From 192601bfa117bc9ba034bf6df5500f45489015da Mon Sep 17 00:00:00 2001 From: Paul Stack Date: Thu, 27 Apr 2017 03:37:31 +1200 Subject: [PATCH 2/2] Update CHANGELOG.md --- CHANGELOG.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 11bcdd095..c2d420ede 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,8 +2,7 @@ BACKWARDS INCOMPATIBILITIES / NOTES: -* provider/aws: Users of aws_cloudfront_distributions with custom_origins have been broken due to changes in the AWS API requiring - `OriginReadTimeout` being set for updates. This has been fixed and will show as a change in terraform plan / apply. [GH-13367] +* provider/aws: Users of aws_cloudfront_distributions with custom_origins have been broken due to changes in the AWS API requiring `OriginReadTimeout` being set for updates. This has been fixed and will show as a change in terraform plan / apply. [GH-13367] IMPROVEMENTS: