Skip to content

Commit

Permalink
chore: edit format task and execute
Browse files Browse the repository at this point in the history
  • Loading branch information
pvaneveld committed Jul 18, 2024
1 parent 99dc3d5 commit a36bde5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions Taskfile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ tasks:
format:
cmds:
- go fmt ./...
- terraform fmt -recursive -write=true ./examples/

test:
cmds:
Expand Down
8 changes: 4 additions & 4 deletions examples/resources/storyblok_component_group/resource.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ resource "storyblok_component_group" "my_component_group" {
}

resource "storyblok_component" "component1" {
name = "component1"
space_id = storyblok_component_group.my_component_group.space_id
name = "component1"
space_id = storyblok_component_group.my_component_group.space_id
component_group_uuid = storyblok_component_group.my_component_group.uuid

schema = {
Expand All @@ -17,8 +17,8 @@ resource "storyblok_component" "component1" {
}

resource "storyblok_component" "component2" {
name = "component2"
space_id = storyblok_component_group.my_component_group.space_id
name = "component2"
space_id = storyblok_component_group.my_component_group.space_id
component_group_uuid = storyblok_component_group.my_component_group.uuid

schema = {
Expand Down

0 comments on commit a36bde5

Please sign in to comment.