Okta 서비스 참조
Teleport Okta 서비스의 설정 및 CLI 참조 문서.
이 가이드는 Okta 가져오기 규칙, Okta 할당 및 tctl 명령을 포함하여 Teleport Okta 서비스를 설정하기 위한 인터페이스 및 옵션을 설명합니다. 또한 문제 해결 지침도 포함합니다. Okta 가져오기 규칙 리소스 # tctl 리소스 명령으로 관리하는 Okta 가져오기 규칙 리소스의 전체 YAML 스펙: kind: okta_import_rule version: v1 metadata: name: test-rule description: "Okta import rule for admins" spec: # Okta Import Rules will be applied in the order of the listed priority. Rules # with lower numbers will be applied first. In the event of a conflict, labels # applied by rules with lower priorities will be overwritten by labels associated # with higher priorities. priority: 10 # Mappings describes a list of match directives that describe what labels to # apply to specific Okta groups and applications that will be synchronized # into Teleport. mappings: - match: # Individual application IDs can be used to create matches. Imported Okta # applications will be matched based on the app IDs listed here. - app_ids: [ "app1" , "app2" ] # These labels will be added to matching applications. add_labels: app_label: app_label_value - match: # Similarly, group IDs can be used to create matches. - group_ids: [ "group1" , "group2" ] # These labels will be added to the groups. add_labels: label1: value1 - match: # Regexes based on the app name can be used to create matches. - app_name_regexes: [ "^okta.*$" , "app*" ] # These labels will be added to matching applications. add_labels: app_label: app_label_value - match: # Similarly, regexes based on the group name can be used as well. - group_name_regexes: [
