This is the repository for the Terraform Active Directory Provider, which one can use with Terraform to work with Active Directory.
Coverage is currently only limited to a one resource only computer, but in the coming months we are planning release coverage for most essential Active Directory workflows. Watch this space!
For general information about Terraform, visit the official website and the GitHub project page.
The current version of this provider requires Terraform v0.10.2 or higher to run.
Note that you need to run terraform init
to fetch the provider before
deploying. Read about the provider split and other changes to TF v0.10.0 in the
official release announcement found here.
The provider is useful in adding computers to Active Directory.
# Configure the Active Directory Provider
provider "ad" {
domain = "${var.ad_server_domain}"
user = "${var.ad_server_user}"
password = "${var.ad_server_password}"
ip = "${var.ad_server_ip}"
}
# Add computer to Active Directory
resource "ad_computer" "foo" {
domain = "${var.ad_domain}"
computer_name = "terraformSample"
description = "terraform sample server"
}
# Add computer to Organizational Unit of Active Directory
resource "ad_computer_to_ou" "bar" {
ou_distinguished_name = "${var.ad_ou_dn}"
computer_name = "terraformOuSample"
description = "terraform sample server to OU"
}
# Add group to Organizational Unit of Active Directory
resource "ad_group_to_ou" "baz" {
ou_distinguished_name = "${var.ad_ou_dn}"
group_name = "terraformGroupSample"
description = "terraform sample group to OU"
}
# Add User to Active Directory
resource "ad_user" "foo1"{
domain = "domain"
first_name = "firstname"
last_name = "lastname"
logon_name = "logonname"
password = "password"
}
NOTE: Unless you are developing or require a pre-release bugfix or feature, you will want to use the officially released version of the provider (see the section above).
First, you will want to clone the repository to
$GOPATH/src/github.com/terraform-providers/terraform-provider-ad
:
mkdir -p $GOPATH/src/github.com/terraform-providers
cd $GOPATH/src/github.com/terraform-providers
git clone [email protected]:terraform-providers/terraform-provider-ad
After the clone has been completed, you can enter the provider directory and build the provider.
cd $GOPATH/src/github.com/terraform-providers/terraform-provider-ad
make build
After the build is complete, copy the terraform-provider-ad
binary into
the same path as your terraform
binary, and re-run terraform init
.
After this, your project-local .terraform/plugins/ARCH/lock.json
(where ARCH
matches the architecture of your machine) file should contain a SHA256 sum that
matches the local plugin. Run shasum -a 256
on the binary to verify the values
match.
If you wish to work on the provider, you'll first need Go installed on your
machine (version 1.9+ is required). You'll also need to correctly setup a
GOPATH, as well as adding $GOPATH/bin
to your $PATH
.
See Building the Provider for details on building the provider.
NOTE: Testing the Active Directory provider is currently a complex operation as it requires having a Active Directory Server to test against.
Most of the tests in this provider require a comprehensive list of environment
variables to run. See the individual *_test.go
files in the
ad/
directory for more details. The next section also
describes how you can manage a configuration file of the test environment
variables.
The tf-ad-devrc.mk.example
file contains
an up-to-date list of environment variables required to run the acceptance
tests. Copy this to $HOME/.tf-ad-devrc.mk
and change the permissions to
something more secure (ie: chmod 600 $HOME/.tf-ad-devrc.mk
), and
configure the variables accordingly.
After this is done, you can run the acceptance tests by running:
$ make testacc
If you want to run against a specific set of tests, run make testacc
with the
TESTARGS
parameter containing the run mask as per below:
make testacc TESTARGS="-run=TestAccAdComputer_Basic"
OR
make testacc TESTARGS="-run=TestAccAdComputerToOU_Basic"
This following example would run all of the acceptance tests matching
TestAccAdComputer_Basic
OR TestAccAdComputerToOU_Basic
. Change this for the
specific tests you want to run.