Commit 16e21308 authored by Stephane Nicoll's avatar Stephane Nicoll

Add missing properties metadata

Fixes gh-1829
parent eb4c1426
{"properties": [
{
"name": "endpoints.configprops.keys-to-sanitize",
"dataType": "java.lang.String",
"sourceType": "org.springframework.boot.actuate.endpoint.ConfigurationPropertiesReportEndpoint",
"description": "The keys that should be sanitize. Keys can be simple strings that the property ends with or regex expressions."
},
{
"name": "endpoints.env.keys-to-sanitize",
"dataType": "java.lang.String",
"sourceType": "org.springframework.boot.actuate.endpoint.EnvironmentEndpoint",
"description": "The keys that should be sanitize. Keys can be simple strings that the property ends with or regex expressions."
},
{
"name": "management.health.db.enabled",
"dataType": "java.lang.Boolean",
......
......@@ -12,7 +12,7 @@
"defaultValue": false
},
{
"name": "spring.batch.enabled",
"name": "spring.batch.job.enabled",
"dataType": "java.lang.Boolean",
"description": "Execute all Spring Batch jobs in the context on startup.",
"defaultValue": true
......
......@@ -68,6 +68,16 @@
"dataType": "java.lang.Boolean",
"sourceType": "org.springframework.boot.SpringApplication",
"description": "Run the application in a web environment (auto-detected by default)"
},
{
"name": "spring.profiles.active",
"dataType": "java.lang.String",
"description": "Set the active profiles as a comma separated list. Can be overridden by a command line switch."
},
{
"name": "spring.profiles.include",
"dataType": "java.lang.String",
"description": "Unconditionally activate the specified comma separated profiles."
}
]}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment