VA-003 Compare authentication methods • Complete Question Bank
Complete VA-003 Compare authentication methods question bank — all 0 questions with answers and detailed explanations.
Drag steps to the numbered slots on the right, or tap a step then tap a slot.
Drag steps to the numbered slots on the right, or tap a step then tap a slot.
Drag a concept onto its matching description — or click a concept then click the description.
Key-value storage with versioning
Dynamic AWS IAM credentials
X.509 certificate generation
Encryption as a service
Dynamic database credentials
Drag a concept onto its matching description — or click a concept then click the description.
Disaster recovery, async replication
Scale read operations, active-standby
Replicate only mount-specific data
Replicate all data across clusters
Refer to the exhibit. ``` $ vault auth list Path Type Accessor Description Default TTL ---- ---- -------- ----------- ----------- token/ token auth_token_xxx token based credentials system audit/ userpass auth_userpass_xxx n/a 24h prod/ approle auth_approle_xxx n/a 24h ```
Refer to the exhibit. ``` $ vault auth list Path Type Accessor Description userpass/ userpass auth_userpass_xxxx Userpass auth ldap/ ldap auth_ldap_yyyy LDAP auth approle/ approle auth_approle_zzzz AppRole auth token/ token auth_token_wwww Token auth ```
Refer to the exhibit. ``` $ vault read auth/userpass/login/john Key Value --- ----- token s.abc123... token_accessor abc123... token_duration 768h token_renewable true identity_policies ["default"] policies ["default"] ```
Refer to the exhibit.
```
# config.json
{
"backend": "[
{
"type": "approle",
"path": "approle/",
"config": {
"default_lease_ttl": "1h",
"max_lease_ttl": "24h"
},
"options": {}
}
]
}
```