mirror of
https://github.com/opentofu/opentofu.git
synced 2025-02-25 18:45:20 -06:00
Updated documentation for Azure join-domain
This commit is contained in:
parent
1a85f1344b
commit
00ea29aea7
@ -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.
|
||||||
|
Loading…
Reference in New Issue
Block a user