|
| 1 | +## Description |
| 2 | + |
| 3 | +Please include a summary of the change and which issue is fixed. Please also include relevant motivation and context. List any dependencies that are required for this change. |
| 4 | + |
| 5 | +Fixes # (issue) |
| 6 | + |
| 7 | +## Type of change |
| 8 | + |
| 9 | +Please delete options that are not relevant. |
| 10 | + |
| 11 | +- [ ] Bug fix (non-breaking change which fixes an issue) |
| 12 | +- [ ] New feature (non-breaking change which adds functionality) |
| 13 | +- [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected) |
| 14 | +- [ ] This change requires a documentation update |
| 15 | + |
| 16 | +## How Has This Been Tested |
| 17 | + |
| 18 | +Please describe the tests that you ran to verify your changes. Provide instructions so we can reproduce. Please also list any relevant details for your test configuration |
| 19 | + |
| 20 | +- [ ] Test A |
| 21 | +- [ ] Test B |
| 22 | + |
| 23 | +#### Test Central Configuration |
| 24 | + |
| 25 | +<details><summary>Clich Here to Expand</summary> |
| 26 | + |
| 27 | +```json |
| 28 | +{ |
| 29 | + "users": { |
| 30 | + "user.1": "ssh-rsa AAA...", |
| 31 | + "user.2": "ssh-rsa AAA...", |
| 32 | + "user.3": "ssh-rsa AAA...", |
| 33 | + "user.4": "ssh-rsa AAA...", |
| 34 | + "user.5": "ssh-rsa AAA...", |
| 35 | + "user.6": "ssh-rsa AAA..." |
| 36 | + }, |
| 37 | + "server_groups": { |
| 38 | + "backend": { |
| 39 | + "sudoers": [ |
| 40 | + "user.2" |
| 41 | + ], |
| 42 | + "users": [ |
| 43 | + "user.1", |
| 44 | + "user.4", |
| 45 | + "user.5" |
| 46 | + ] |
| 47 | + }, |
| 48 | + "poc": { |
| 49 | + "sudoers": [ |
| 50 | + "user.1", |
| 51 | + "user.2", |
| 52 | + "user.4" |
| 53 | + ], |
| 54 | + "users": [ |
| 55 | + "user.6" |
| 56 | + ] |
| 57 | + }, |
| 58 | + "devops": { |
| 59 | + "sudoers": [ |
| 60 | + "user.2" |
| 61 | + ], |
| 62 | + "users": [ |
| 63 | + "user.3", |
| 64 | + "user.5" |
| 65 | + ] |
| 66 | + } |
| 67 | + } |
| 68 | +} |
| 69 | +``` |
| 70 | + |
| 71 | +</details> |
| 72 | + |
| 73 | +#### Test Server Configuration |
| 74 | + |
| 75 | +<details><summary>Clich Here to Expand</summary> |
| 76 | + |
| 77 | +```yaml |
| 78 | +secret_name: ssh-manager |
| 79 | +groups: |
| 80 | + - devops |
| 81 | +``` |
| 82 | +
|
| 83 | +</details> |
| 84 | +
|
| 85 | +# Checklist |
| 86 | +
|
| 87 | +- [ ] My code follows the style guidelines of this project |
| 88 | +- [ ] I have performed a self-review of my own code |
| 89 | +- [ ] I have commented my code, particularly in hard-to-understand areas |
| 90 | +- [ ] I have made corresponding changes to the documentation |
| 91 | +- [ ] My changes generate no new warnings |
| 92 | +- [ ] I have added tests that prove my fix is effective or that my feature works |
| 93 | +- [ ] New and existing unit tests pass locally with my changes |
0 commit comments