email is variable, not string

This commit is contained in:
Sarah Zelechoski 2016-08-23 17:32:46 -04:00
parent 3c63c04c11
commit 35c7d37f40
1 changed files with 1 additions and 1 deletions

View File

@ -551,7 +551,7 @@ func resourceComputeInstanceTemplateCreate(d *schema.ResourceData, meta interfac
} }
serviceAccount := &compute.ServiceAccount{ serviceAccount := &compute.ServiceAccount{
Email: "email", Email: email,
Scopes: scopes, Scopes: scopes,
} }