Add a `url` attribute to `google_storage_bucket` (#14393)
* Add a `url` attribute to `google_storage_bucket` * Document the `url` attribute
This commit is contained in:
parent
e14dc3663f
commit
e252640a94
|
@ -58,6 +58,11 @@ func resourceStorageBucket() *schema.Resource {
|
||||||
Computed: true,
|
Computed: true,
|
||||||
},
|
},
|
||||||
|
|
||||||
|
"url": &schema.Schema{
|
||||||
|
Type: schema.TypeString,
|
||||||
|
Computed: true,
|
||||||
|
},
|
||||||
|
|
||||||
"storage_class": &schema.Schema{
|
"storage_class": &schema.Schema{
|
||||||
Type: schema.TypeString,
|
Type: schema.TypeString,
|
||||||
Optional: true,
|
Optional: true,
|
||||||
|
@ -151,6 +156,7 @@ func resourceStorageBucketCreate(d *schema.ResourceData, meta interface{}) error
|
||||||
|
|
||||||
// Assign the bucket ID as the resource ID
|
// Assign the bucket ID as the resource ID
|
||||||
d.Set("self_link", res.SelfLink)
|
d.Set("self_link", res.SelfLink)
|
||||||
|
d.Set("url", fmt.Sprintf("gs://%s", bucket))
|
||||||
d.SetId(res.Id)
|
d.SetId(res.Id)
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
|
|
|
@ -66,3 +66,5 @@ In addition to the arguments listed above, the following computed attributes are
|
||||||
exported:
|
exported:
|
||||||
|
|
||||||
* `self_link` - The URI of the created resource.
|
* `self_link` - The URI of the created resource.
|
||||||
|
|
||||||
|
* `url` - The base URL of the bucket, in the format `gs://<bucket-name>`.
|
||||||
|
|
Loading…
Reference in New Issue