1 個回答
- 最新
- 最多得票
- 最多評論
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.
已回答 1 年前
相關內容
- 已提問 4 個月前
- 已提問 6 個月前
