Skip to content

Instantly share code, notes, and snippets.

@El-Coder
Last active March 19, 2021 15:45
Show Gist options
  • Select an option

  • Save El-Coder/db1c67da8f821dcd02925073eaa8aff3 to your computer and use it in GitHub Desktop.

Select an option

Save El-Coder/db1c67da8f821dcd02925073eaa8aff3 to your computer and use it in GitHub Desktop.
do
{
"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