Skip to content

Commit

Permalink
Update chef bootstrap task example (#283)
Browse files Browse the repository at this point in the history
  • Loading branch information
martezr authored Sep 24, 2024
1 parent 3c6c25f commit 9ec537e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

NOTES:

* Update the `morpheus_chef_bootstrap_task` example to fix a typo referencing the server id attribute as `server_id` instead of `chef_server_id`.
* Added support for the `morpheus_networks` data source to lookup networks and return a list of network ids. [280](https://github.com/gomorpheus/terraform-provider-morpheus/issues/280)

FEATURES:
Expand Down
2 changes: 1 addition & 1 deletion docs/resources/chef_bootstrap_task.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ resource "morpheus_chef_bootstrap_task" "cheftask" {
name = "terraform_example_chef"
code = "terraform_example_chef"
labels = ["demo", "terraform"]
server_id = 9
chef_server_id = 9
environment = "dev"
run_list = "role[web]"
data_bag_key = "test123"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ resource "morpheus_chef_bootstrap_task" "cheftask" {
name = "terraform_example_chef"
code = "terraform_example_chef"
labels = ["demo", "terraform"]
server_id = 9
chef_server_id = 9
environment = "dev"
run_list = "role[web]"
data_bag_key = "test123"
Expand Down

0 comments on commit 9ec537e

Please sign in to comment.