Skip to content
This repository has been archived by the owner on Dec 19, 2023. It is now read-only.

Commit

Permalink
Updated documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
terricain committed Mar 17, 2021
1 parent 97589e6 commit 7359d65
Show file tree
Hide file tree
Showing 5 changed files with 49 additions and 0 deletions.
17 changes: 17 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,23 @@ Terraform Provider

<img src="https://cdn.rawgit.com/hashicorp/terraform-website/master/content/source/assets/images/logo-hashicorp.svg" width="600px">


---

# Will update soon, this is purely a fork of the archived chef provider, so we have darwin_arm64 builds

also added import functionality

To replace old Hashicorp Chef provider with this one:
```
tf state replace-provider terraform-providers/chef terrycain/chef
```


---



Requirements
------------

Expand Down
8 changes: 8 additions & 0 deletions website/docs/r/data_bag.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -36,3 +36,11 @@ The following arguments are supported:
The following attributes are exported:

* `api_uri` - The URI representing this data bag in the Chef server API.

## Import

Chef Data Bag's can be imported using the `name`, e.g.

```shell
terraform import chef_data_bag.db_info db_info
```
8 changes: 8 additions & 0 deletions website/docs/r/environment.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -49,3 +49,11 @@ The following arguments are supported:
## Attributes Reference

This resource exports no further attributes.

## Import

Chef Environment's can be imported using the `name`, e.g.

```shell
terraform import chef_environment.env1 prod
```
8 changes: 8 additions & 0 deletions website/docs/r/node.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -53,3 +53,11 @@ The following arguments are supported:
## Attributes Reference

This resource exports no further attributes.

## Import

Chef Node's can be imported using the `name`, e.g.

```shell
terraform import chef_node.db1 db1
```
8 changes: 8 additions & 0 deletions website/docs/r/role.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -45,3 +45,11 @@ The following arguments are supported:
## Attributes Reference

This resource exports no further attributes.

## Import

Chef Role's can be imported using the `name`, e.g.

```shell
terraform import chef_role.db db
```

0 comments on commit 7359d65

Please sign in to comment.