123456789101112131415161718192021222324252627282930313233 |
- # Copyright 2021 Dell Inc. or its subsidiaries. All Rights Reserved.
- #
- # Licensed under the Apache License, Version 2.0 (the "License");
- # you may not use this file except in compliance with the License.
- # You may obtain a copy of the License at
- #
- # http://www.apache.org/licenses/LICENSE-2.0
- #
- # Unless required by applicable law or agreed to in writing, software
- # distributed under the License is distributed on an "AS IS" BASIS,
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- # See the License for the specific language governing permissions and
- # limitations under the License.
- ---
- # vars file for idrac_ldap role
- # Usage: validate_ldap_vars.yml
- ldap_success_msg: "generic_ldap_directory_services validated"
- ldap_fail_msg: "Failed. generic_ldap_directory_services accepts only enabled or disabled in idrac_vars.yml"
- ldap_input_fail_msg: "Failed. Please provide all the required parameters in idrac_tools_vars.yml"
- cert_validation_success_msg: "cert_validation_enable validated"
- cert_validation_fail_msg: "Failed. cert_validation_enable accepts only disabled in idrac_tools_vars.yml"
- bind_dn_success_msg: "bind_dn validated"
- bind_dn_fail_msg: "Failed. Invalid format for bind_dn in idrac_tools_vars.yml"
- base_dn_success_msg: "base_dn validated"
- base_dn_fail_msg: "Failed. Invalid format for base_dn in idrac_tools_vars.yml"
- group_attribute_success_msg: "group_attribute_is_dn is validated"
- group_attribute_fail_msg: "Failed. group_attribute_is_dn accepts only enabled or disabled in idrac_tools_vars.yml"
- role_group1_dn_success_msg: "role_group1_dn validated"
- role_group1_dn_fail_msg: "Failed. Invalid format for role_group1_dn in idrac_tools_vars.yml"
- role_group1_privilege_success_msg: "role_group1_privilege validated"
- role_group1_privilege_fail_msg: "Failed. role_group1_privilege accepts only Administrator or Operator or ReadOnly in idrac_tools_vars.yml"
|