Skip to content

Commit

Permalink
Add undocumented custom_json argument to opsworks_stack doc (#6074)
Browse files Browse the repository at this point in the history
  • Loading branch information
u2mejc authored and stack72 committed Apr 8, 2016
1 parent 786cc45 commit 576e560
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,13 @@ resource "aws_opsworks_stack" "main" {
region = "us-west-1"
service_role_arn = "${aws_iam_role.opsworks.arn}"
default_instance_profile_arn = "${aws_iam_instance_profile.opsworks.arn}"
custom_json = <<EOT
{
"foobar": {
"version": "1.0.0"
}
}
EOT
}
```

Expand All @@ -38,6 +45,7 @@ The following arguments are supported:
* `configuration_manager_version` - (Optional) Version of the configuratino manager to use. Defaults to "11.4".
* `custom_cookbooks_source` - (Optional) When `use_custom_cookbooks` is set, provide this sub-object as
described below.
* `custom_json` - (Optional) User defined JSON passed to "Chef". Use a "here doc" for multiline JSON.
* `default_os` - (Optional) Name of OS that will be installed on instances by default.
* `default_root_device_type` - (Optional) Name of the type of root device instances will have by default.
* `default_ssh_key_name` - (Optional) Name of the SSH keypair that instances will have by default.
Expand Down

0 comments on commit 576e560

Please sign in to comment.