Skip to content

Commit

Permalink
Release 0.14.1
Browse files Browse the repository at this point in the history
  • Loading branch information
bsimonWallix committed Dec 13, 2024
1 parent 2fd18fb commit 2e8d6bd
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 20 deletions.
3 changes: 0 additions & 3 deletions .changes/feature_authdomain_datasource.md

This file was deleted.

4 changes: 0 additions & 4 deletions .changes/hotfix_external_auth_kerberos.md

This file was deleted.

3 changes: 0 additions & 3 deletions .changes/hotfix_provider_test.md

This file was deleted.

12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# changelog

## 0.14.1 (Decembner 13, 2024)

FEATURES:

* **datasource/wallix-bastion_authdomain_ad**: added the datasource to retrieve an existing authdomain
* **resource/wallix-bastion_domain_account_credential**: added credential propagation to AD upon creation.

BUG FIXES:

* **resource/wallix-bastion_externalauth_kerberos**: deprecate `login_attribute` argument (it produces Bad Request with API v3.12)
* **provider_test**: Added the user environment variable presence test for acceptance tests.

## 0.14.0 (November 08, 2024)

BREAKING CHANGES:
Expand Down
22 changes: 12 additions & 10 deletions docs/resources/domain_account_credential.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,28 +18,30 @@ resource "wallix-bastion_domain_account_credential" "dom1admpass" {

The following arguments are supported:

- **domain_id** (Required, String, Forces new resource)
- **domain_id** (Required, String, Forces new resource)
ID of domain.
- **account_id** (Required, String, Forces new resource)
- **account_id** (Required, String, Forces new resource)
ID of account.
- **type** (Required, String, Forces new resource)
The credential type.
- **type** (Required, String, Forces new resource)
The credential type.
Need to be `password` or `ssh_key`.
- **passphrase** (Optional, String, Sensitive, **Value can't refresh**)
- **passphrase** (Optional, String, Sensitive, **Value can't refresh**)
The passphrase for the private key (only for an encrypted private key).
- **password** (Optional, String, Sensitive, **Value can't refresh**)
- **password** (Optional, String, Sensitive, **Value can't refresh**)
The account password.
- **private_key** (Optional, String, Sensitive, **Value can't refresh**, Forces new resource)
The account private key.
- **private_key** (Optional, String, Sensitive, **Value can't refresh**, Forces new resource)
The account private key.
Special values are allowed to automatically generate SSH key:
`generate:RSA_1024`, `generate:RSA_2048`, `generate:RSA_4096`, `generate:RSA_8192`,
`generate:DSA_1024`, `generate:ECDSA_256`, `generate:ECDSA_384`, `generate:ECDSA_521`, `generate:ED25519`.
- **propagate_credential_change** (Optional, Bool)
Set to true propagate credential after change.

## Attribute Reference

- **id** (String)
- **id** (String)
Internal id of domain account credential in bastion.
- **public_key** (String)
- **public_key** (String)
The account public key.

## Import
Expand Down

0 comments on commit 2e8d6bd

Please sign in to comment.