Updated documentation for Azure join-domain

This commit is contained in:
Dave McDermid 2015-09-08 15:53:52 +01:00
parent 1a85f1344b
commit 00ea29aea7

View File

@ -31,6 +31,10 @@ resource "azure_instance" "web" {
location = "West US" location = "West US"
username = "terraform" username = "terraform"
password = "Pass!admin123" password = "Pass!admin123"
domain_name = "contoso.com"
domain_ou = "OU=Servers,DC=contoso.com,DC=Contoso,DC=com"
domain_username = "Administrator"
domain_password = "Pa$$word123"
endpoint { endpoint {
name = "SSH" name = "SSH"
@ -109,6 +113,18 @@ The following arguments are supported:
* `endpoint` - (Optional) Can be specified multiple times to define multiple * `endpoint` - (Optional) Can be specified multiple times to define multiple
endpoints. Each `endpoint` block supports fields documented below. endpoints. Each `endpoint` block supports fields documented below.
* `domain_name` - (Optional) The name of an Active Directory domain to join.
* `domain_ou` - (Optional) Specifies the LDAP Organisational Unit to place the
instance in.
* `domain_username` - (Optional) The username of an account with permission to
join the instance to the domain. Required if a domain_name is specified.
* `domain_password` - (Optional) The password for the domain_username account
specified above.
The `endpoint` block supports: The `endpoint` block supports:
* `name` - (Required) The name of the external endpoint. * `name` - (Required) The name of the external endpoint.