Switch to / as separator.

Switch to using / as a separator for IDs, instead of :.
This commit is contained in:
Paddy 2017-07-27 13:50:31 -07:00
parent adc206a02d
commit f94c3872af

View File

@ -62,7 +62,7 @@ func resourceGoogleProjectIamBindingCreate(d *schema.ResourceData, meta interfac
if err != nil {
return err
}
d.SetId(pid + ":" + p.Role)
d.SetId(pid + "/" + p.Role)
return resourceGoogleProjectIamBindingRead(d, meta)
}