Skip to content

Commit 173370a

Browse files
martinstibbeZuhairahmeddependabot[bot]
authored
INTMDB-440: Update ldap_configuration broken (#1033)
* Update CHANGELOG.md * Chore(deps): Bump golangci/golangci-lint-action from 3.3.1 to 3.4.0 (#1026) Bumps [golangci/golangci-lint-action](https://github.com/golangci/golangci-lint-action) from 3.3.1 to 3.4.0. - [Release notes](https://github.com/golangci/golangci-lint-action/releases) - [Commits](golangci/golangci-lint-action@v3.3.1...v3.4.0) --- updated-dependencies: - dependency-name: golangci/golangci-lint-action dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Add authentication_enabled parameter to LDAPConfigurationUpdate --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: Zuhair Ahmed <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent fa46656 commit 173370a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mongodbatlas/resource_mongodbatlas_ldap_configuration.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ func resourceMongoDBAtlasLDAPConfigurationUpdate(ctx context.Context, d *schema.
202202
ldap := &matlas.LDAP{}
203203

204204
if d.HasChange("authentication_enabled") {
205-
ldap.AuthenticationEnabled = pointy.Bool(d.Get("").(bool))
205+
ldap.AuthenticationEnabled = pointy.Bool(d.Get("authentication_enabled").(bool))
206206
}
207207

208208
if d.HasChange("authorization_enabled") {

0 commit comments

Comments
 (0)