Skip to content

Commit

Permalink
🐛 fix gcloud.project.cloudRun.services { template { * }} (#5225)
Browse files Browse the repository at this point in the history
  • Loading branch information
vjeffrey authored Feb 18, 2025
1 parent c4ae9e4 commit 0f6ceb6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions providers/gcp/resources/cloudrun.go
Original file line number Diff line number Diff line change
Expand Up @@ -396,7 +396,7 @@ func (g *mqlGcpProjectCloudRunServiceServiceRevisionTemplate) serviceAccount() (
}
email := g.ServiceAccountEmail.Data

res, err := CreateResource(g.MqlRuntime, "gcp.project.iamService.serviceAccount", map[string]*llx.RawData{
res, err := NewResource(g.MqlRuntime, "gcp.project.iamService.serviceAccount", map[string]*llx.RawData{
"projectId": llx.StringData(projectId),
"email": llx.StringData(email),
})
Expand All @@ -417,7 +417,7 @@ func (g *mqlGcpProjectCloudRunServiceJobExecutionTemplateTaskTemplate) serviceAc
}
email := g.ServiceAccountEmail.Data

res, err := CreateResource(g.MqlRuntime, "gcp.project.iamService.serviceAccount", map[string]*llx.RawData{
res, err := NewResource(g.MqlRuntime, "gcp.project.iamService.serviceAccount", map[string]*llx.RawData{
"projectId": llx.StringData(projectId),
"email": llx.StringData(email),
})
Expand Down

0 comments on commit 0f6ceb6

Please sign in to comment.