blob: 760b215f4f390960e5d3794c5bfaf1d2d93d4380 [file] [log] [blame]
<!DOCTYPE html>
<html lang="en">
<!--
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<head>
<meta charset="utf-8" />
<title>ADLSCredentialsControllerService</title>
<link rel="stylesheet" href="../../../../../css/component-usage.css" type="text/css" />
</head>
<body>
<h3>Security considerations of using Expression Language for sensitive properties</h3>
<p>
Allowing Expression Language for a property has the advantage of configuring the property dynamically via FlowFile attributes
or Variable Registry entries. In case of sensitive properties, it also has a drawback of exposing sensitive information like
passwords, security keys or tokens. When the value of a sensitive property comes from a FlowFile attribute, it travels by the
FlowFile in clear text form and is also saved in the provenance repository. Variable Registry does not support the encryption of
sensitive information either. Due to these, the sensitive credential data can be exposed to unauthorized parties.
<p>
Best practices for using Expression Language for sensitive properties:
<ul>
<li>use it only if necessary</li>
<li>control access to the flow and to provenance repository</li>
<li>encrypt disks storing FlowFiles and provenance data</li>
<li>if the sensitive data is a temporary token (like the SAS token), use a shorter lifetime and refresh the token periodically</li>
</ul>
</body>
</html>