terraform/website/source/docs/providers/chef/index.html.markdown

62 lines
1.9 KiB
Markdown
Raw Normal View History

2015-08-29 18:16:50 +02:00
---
layout: "chef"
page_title: "Provider: Chef"
sidebar_current: "docs-chef-index"
description: |-
Chef is a systems and cloud infrastructure automation framework.
---
# Chef Provider
[Chef](https://www.chef.io/) is a systems and cloud infrastructure automation
framework. The Chef provider allows Terraform to manage various resources
that exist within [Chef Server](http://docs.chef.io/chef_server.html).
Use the navigation to the left to read about the available resources.
## Example Usage
2017-04-10 18:09:04 +02:00
```hcl
2015-08-29 18:16:50 +02:00
# Configure the Chef provider
provider "chef" {
server_url = "https://api.chef.io/organizations/example/"
2015-08-29 18:16:50 +02:00
2017-04-10 18:09:04 +02:00
# You can set up a "Client" within the Chef Server management console.
client_name = "terraform"
key_material = "${file("chef-terraform.pem")}"
2015-08-29 18:16:50 +02:00
}
# Create a Chef Environment
resource "chef_environment" "production" {
name = "production"
2015-08-29 18:16:50 +02:00
}
# Create a Chef Role
resource "chef_role" "app_server" {
name = "app_server"
run_list = [
"recipe[terraform]",
]
2015-08-29 18:16:50 +02:00
}
```
## Argument Reference
The following arguments are supported:
* `server_url` - (Required) The HTTP(S) API URL of the Chef server to use. If
the target Chef server supports organizations, use the full URL of the
organization you wish to configure. May be provided instead via the
``CHEF_SERVER_URL`` environment variable.
* `client_name` - (Required) The name of the client account to use when making
requests. This must have been already configured on the Chef server.
May be provided instead via the ``CHEF_CLIENT_NAME`` environment variable.
* `key_material` - (Required) The PEM-formatted private key contents belonging to
2015-08-29 18:16:50 +02:00
the configured client. This is issued by the server when a new client object
is created. May be provided via the
2015-08-29 18:16:50 +02:00
``CHEF_PRIVATE_KEY_FILE`` environment variable.
* `allow_unverified_ssl` - (Optional) Boolean indicating whether to make
requests to a Chef server whose SSL certicate cannot be verified. Defaults
to ``false``.