EFK API Key 생성, 조회, 삭제하기
2025. 1. 30. 15:00ㆍEFK
생성성
POST _security/api_key
{
"name": "{키 이름}",
"role_descriptors": {
"custom_role": {
"cluster": ["all"],
"index": [
{
"names": ["*"],
"privileges": ["read", "write"]
}
]
}
}
}
결과
{
"id": "{ID}",
"name": "{키 이름}",
"api_key": "{키값}",
"encoded": "{인코딩값}"
}
조회
GET _security/api_key
삭제
# 1개 삭제
DELETE _security/api_key
{
"id": "kEfPtZQBsgQes-7X0bVH"
}
# 여러개 삭제
DELETE _security/api_key
{
"ids": ["kEfPtZQBsgQes-7X0bVH","jkfItZQBsgQes-7XdbVH"]
}
'EFK' 카테고리의 다른 글
EFK metricbeat 설치 및 셋팅 (0) | 2025.01.30 |
---|---|
EFK winlogbeat api key 설정 (0) | 2025.01.30 |
EFK elasticsearch index 조회 (0) | 2025.01.30 |
EFK elasticsearch 계정 생성 및 비밀번호 변경 (0) | 2025.01.30 |
EFK elasticsearch 계정 및 권한 확인 (0) | 2025.01.30 |