Merge pull request #399 from terraform-providers/vendor-tf-0.10.3

Remove 'id' fields from schemas
This commit is contained in:
Paddy 2017-10-31 16:10:45 -07:00 committed by GitHub
commit c882a77db6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
9 changed files with 15 additions and 20 deletions

View File

@ -61,7 +61,7 @@ func resourceComputeSslCertificate() *schema.Resource {
ForceNew: true,
},
"id": &schema.Schema{
"certificate_id": &schema.Schema{
Type: schema.TypeString,
Computed: true,
},
@ -140,7 +140,7 @@ func resourceComputeSslCertificateRead(d *schema.ResourceData, meta interface{})
}
d.Set("self_link", cert.SelfLink)
d.Set("id", strconv.FormatUint(cert.Id, 10))
d.Set("certificate_id", strconv.FormatUint(cert.Id, 10))
return nil
}

View File

@ -34,7 +34,7 @@ func resourceComputeTargetHttpProxy() *schema.Resource {
ForceNew: true,
},
"id": &schema.Schema{
"proxy_id": &schema.Schema{
Type: schema.TypeString,
Computed: true,
},
@ -134,7 +134,7 @@ func resourceComputeTargetHttpProxyRead(d *schema.ResourceData, meta interface{}
}
d.Set("self_link", proxy.SelfLink)
d.Set("id", strconv.FormatUint(proxy.Id, 10))
d.Set("proxy_id", strconv.FormatUint(proxy.Id, 10))
return nil
}

View File

@ -5,9 +5,10 @@ import (
"log"
"strconv"
"regexp"
"github.com/hashicorp/terraform/helper/schema"
"google.golang.org/api/compute/v1"
"regexp"
)
const (
@ -55,7 +56,7 @@ func resourceComputeTargetHttpsProxy() *schema.Resource {
Computed: true,
},
"id": &schema.Schema{
"proxy_id": &schema.Schema{
Type: schema.TypeString,
Computed: true,
},
@ -177,8 +178,8 @@ func resourceComputeTargetHttpsProxyRead(d *schema.ResourceData, meta interface{
}
d.Set("ssl_certificates", proxy.SslCertificates)
d.Set("proxy_id", strconv.FormatUint(proxy.Id, 10))
d.Set("self_link", proxy.SelfLink)
d.Set("id", strconv.FormatUint(proxy.Id, 10))
return nil
}

View File

@ -63,7 +63,7 @@ func resourceComputeUrlMap() *schema.Resource {
},
},
"id": &schema.Schema{
"map_id": &schema.Schema{
Type: schema.TypeString,
Computed: true,
},
@ -315,7 +315,7 @@ func resourceComputeUrlMapRead(d *schema.ResourceData, meta interface{}) error {
d.SetId(name)
d.Set("self_link", urlMap.SelfLink)
d.Set("id", strconv.FormatUint(urlMap.Id, 10))
d.Set("map_id", strconv.FormatUint(urlMap.Id, 10))
d.Set("fingerprint", urlMap.Fingerprint)
hostRuleMap := make(map[string]*compute.HostRule)

View File

@ -30,12 +30,6 @@ func resourceGoogleProject() *schema.Resource {
MigrateState: resourceGoogleProjectMigrateState,
Schema: map[string]*schema.Schema{
"id": &schema.Schema{
Type: schema.TypeString,
Optional: true,
Computed: true,
Removed: "The id field has been removed. Use project_id instead.",
},
"project_id": &schema.Schema{
Type: schema.TypeString,
Required: true,

View File

@ -84,9 +84,9 @@ The following arguments are supported:
In addition to the arguments listed above, the following computed attributes are
exported:
* `id` - A unique ID for the certificated, assigned by GCE.
* `certificate_id` - A unique ID for the certificate, assigned by GCE.
* `self_link` - The URI of the created resource.
[1]: /docs/providers/google/r/compute_target_https_proxy.html
[2]: /docs/configuration/resources.html#lifecycle
[2]: /docs/configuration/resources.html#lifecycle

View File

@ -86,6 +86,6 @@ The following arguments are supported:
In addition to the arguments listed above, the following computed attributes are
exported:
* `id` - A unique ID assigned by GCE.
* `proxy_id` - A unique ID assigned by GCE.
* `self_link` - The URI of the created resource.

View File

@ -96,6 +96,6 @@ The following arguments are supported:
In addition to the arguments listed above, the following computed attributes are
exported:
* `id` - A unique ID assigned by GCE.
* `proxy_id` - A unique ID assigned by GCE.
* `self_link` - The URI of the created resource.

View File

@ -157,6 +157,6 @@ exported:
* `fingerprint` - The unique fingerprint for this resource.
* `id` - The GCE assigned ID of the resource.
* `map_id` - The GCE assigned ID of the resource.
* `self_link` - The URI of the created resource.