1 Answer
- Newest
- Most votes
- Most comments
0
Finally found that, the webinterface is bugged and the master user ARN can not be set using the webinterface. Have to use the CLI command
aws opensearch update-domain-config \
--domain-name my-opensearch-domain \
--advanced-security-options file://options.json
with something like this in options.json
{
"MasterUserOptions": {
"MasterUserARN": "arn:aws:iam::123456789012:user/MasterUser"
}
}
Then it works.
answered 18 days ago
Relevant content
- asked 5 months ago
- AWS OFFICIALUpdated 2 years ago
- AWS OFFICIALUpdated 5 months ago
- AWS OFFICIALUpdated 5 months ago
- AWS OFFICIALUpdated 2 years ago