| .. | ||
| ActiveDirectory_Lab_Scripts.zip | ||
| create_groups.ps1 | ||
| create_ous.ps1 | ||
| create_users.ps1 | ||
| groups.csv | ||
| install.ps1 | ||
| ous.csv | ||
| README.md | ||
| run.ps1 | ||
| users.csv | ||
Setup Active Directory Lab
# https://registry.terraform.io/providers/hashicorp/template/latest/docs/data-sources/file.html
data "template_file" "init" {
template = "${file("populate_ad/run.ps1.tpl")}"
vars = {
forest_mode = ""
domain_mode = ""
domain_name = "${aws_instance.some.private_ip}"
domain_netbios_name = ""
safe_mode_password = ""
domain_admin_password = ""
}
}