Skip to content

Commit

Permalink
Update spaces datasource (#748)
Browse files Browse the repository at this point in the history
  • Loading branch information
IsaacCalligeros95 authored Aug 16, 2024
1 parent c24b186 commit 154a51f
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions octopusdeploy_framework/datasource_space.go
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ func (b *spaceDataSource) Read(ctx context.Context, req datasource.ReadRequest,

func mapSpaceToState(ctx context.Context, data *schemas.SpaceModel, space *spaces.Space) {
data.ID = types.StringValue(space.ID)
data.Name = types.StringValue(space.Name)
data.Description = types.StringValue(space.Description)
data.Slug = types.StringValue(space.Slug)
data.IsTaskQueueStopped = types.BoolValue(space.TaskQueueStopped)
Expand Down

0 comments on commit 154a51f

Please sign in to comment.