Merge pull request #9560 from hashicorp/b-aws-computed-public-ip

provider/aws: Make associate_public_ip_address computed
This commit is contained in:
Clint 2016-10-24 14:21:44 -05:00 committed by GitHub
commit 7c58896f30
1 changed files with 1 additions and 0 deletions

View File

@ -41,6 +41,7 @@ func resourceAwsInstance() *schema.Resource {
"associate_public_ip_address": &schema.Schema{
Type: schema.TypeBool,
ForceNew: true,
Computed: true,
Optional: true,
},