Security News
Opengrep Emerges as Open Source Alternative Amid Semgrep Licensing Controversy
Opengrep forks Semgrep to preserve open source SAST in response to controversial licensing changes.
github.com/dsonck92/terraform-provider-ldap
You can easily install the latest version with the following:
go get -u github.com/elastic-infra/terraform-provider-ldap
Then add the plugin to your local .terraformrc
:
cat >> ~/.terraformrc <<EOF
providers {
ldap = "${GOPATH}/bin/terraform-provider-ldap"
}
EOF
provider "ldap" {
ldap_host = "ldap.example.org"
ldap_port = 389
use_tls = true
bind_user = "cn=admin,dc=example,dc=com"
bind_password = "admin"
}
resource "ldap_object" "foo" {
# DN must be complete (no RDN!)
dn = "uid=foo,dc=example,dc=com"
# classes are specified as an array
object_classes = [
"inetOrgPerson",
"posixAccount",
]
# attributes are specified as a set of 1-element maps
attributes = [
{ sn = "10" },
{ cn = "bar" },
{ uidNumber = "1234" },
{ gidNumber = "1234" },
{ homeDirectory = "/home/billy" },
{ loginShell = "/bin/bash" },
# when an attribute has multiple values, it must be specified multiple times
{ mail = "billy@example.com" },
{ mail = "admin@example.com" },
]
}
The Bind User must have write access for resource creation to succeed.
This provider is feature complete.
As of the latest release, it supports resource creation, reading, update, deletion
and importing.
It can be used to create nested resources at all levels of the hierarchy,
provided the proper (implicit or explicit) dependencies are declared.
When updating an object, the plugin computes the minimum set of attributes that
need to be added, modified and removed and surgically operates on the remote
object to bring it up to date.
When importing existing LDAP objects into the Terraform state, the plugin can
automatically generate a .tf file with the relevant information, so that the
following terraform apply
does not drop the imported resource out of the
remote LDAP server due to it missing in the local .tf
files.
In order to have the plugin generate this file, put the name of the output file
(which must not exist on disk) in the TF_LDAP_IMPORTER_PATH
environment
variable, like this:
$> export TF_LDAP_IMPORTER_PATH=a123456.tf
$> terraform import ldap_object.a123456 uid=a123456,ou=users,dc=example,dc=com
and the plugin will create the a123456.tf
file with the proper information.
Then merge this file into your existing .tf
file(s).
This provider supports TLS, but certificate verification is not enabled yet; all connections are through TCP, no UDP support yet.
FAQs
Unknown package
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Opengrep forks Semgrep to preserve open source SAST in response to controversial licensing changes.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.