github.com/sap/cf-mta-plugin@v2.6.3+incompatible/configuration/properties/backend_url_configurable_property.go (about) 1 package properties 2 3 var BackendURL = ConfigurableProperty{ 4 Name: "MULTIAPPS_CONTROLLER_URL", 5 DeprecatedNames: []string{ 6 "DEPLOY_SERVICE_URL", 7 }, 8 Parser: noOpParser{}, 9 ParsingSuccessMessage: "Attention: You've specified a custom backend URL (%s) via the environment variable \"%s\". The application listening on that URL may be outdated, contain bugs or unreleased features or may even be modified by a potentially untrused person. Use at your own risk.\n", 10 ParsingFailureMessage: "No validation implemented for custom backend URLs. If you're seeing this message then something has gone horribly wrong.\n", 11 DefaultValue: "", 12 }