Skip to content

Commit

Permalink
Fix type mapping assignment
Browse files Browse the repository at this point in the history
  • Loading branch information
okamosy authored and micahlmartin committed Oct 28, 2021
1 parent 1364f6f commit bc1e1dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/provider/data_source_environment.go
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ func dataSourceEnvironmentRead(ctx context.Context, d *schema.ResourceData, meta
d.SetId(env.Id)
d.Set("app_id", env.ApplicationId)
d.Set("name", env.Name)
d.Set("type", env.Type)
d.Set("type", env.EnvironmentType)
d.Set("description", env.Description)

if overrides := flattenVariableOverrides(env.VariableOverrides); len(overrides) > 0 {
Expand Down

0 comments on commit bc1e1dc

Please sign in to comment.