Last active
March 19, 2021 15:45
-
-
Save El-Coder/db1c67da8f821dcd02925073eaa8aff3 to your computer and use it in GitHub Desktop.
do
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "schemaVersion": "1.0.0", | |
| "class": "Device", | |
| "async": true, | |
| "label": "my BIG-IP declaration for declarative onboarding", | |
| "Common": { | |
| "class": "Tenant", | |
| "hostname": "bigip1.example.com", | |
| "myDns": { | |
| "class": "DNS", | |
| "nameServers": [ | |
| "8.8.8.8" | |
| ] | |
| }, | |
| "myNtp": { | |
| "class": "NTP", | |
| "servers": [ | |
| "0.pool.ntp.org" | |
| ], | |
| "timezone": "UTC" | |
| }, | |
| "admin": { | |
| "class": "User", | |
| "userType": "regular", | |
| "password": "{{{ ADMIN_PASS }}}", | |
| "shell": "bash" | |
| }, | |
| "{{{ USER_NAME }}}": { | |
| "class": "User", | |
| "userType": "regular", | |
| "password": "{{{ ADMIN_PASS }}}", | |
| "shell": "none", | |
| "partitionAccess": { | |
| "all-partitions": { | |
| "role": "admin" | |
| } | |
| } | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment