1234567891011121314151617181920212223242526272829303132 |
- # Copyright 2022 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.
- ---
- ipa_install_verification_success_msg: "IPA installation successful"
- ipa_install_verification_fail_msg: "IPA is not installed"
- user_var: "user"
- random_number: "{{ 10000 | random }}"
- user_creation_success_msg: "User creation successful"
- user_creation_fail_msg: "User creation failed"
- group_var: "group"
- group_creation_success_msg: "Group creation successful"
- group_creation_fail_msg: "Group creation failed"
- role_var: "role"
- role_creation_success_msg: "Role creation successful"
- role_creation_fail_msg: "Role creation failed"
- add_user_to_group_success_msg: "User successfully added to group"
- add_user_to_group_fail_msg: "User add to group failed"
- user_deletion_success_msg: "User deletion successful"
- user_deletion_fail_msg: "User deletion failed"
- group_deletion_success_msg: "Group deletion successful"
- group_deletion_fail_msg: "Group deletion failed"
|