Fix documentation on Fn::Base64 function
The documentation says that the 'Fn::Base64' function converts an input string into Base64, while the implementation is actually a pass-through. This patch fixes the documentation to avoid confusions caused to users. Change-Id: I643e73f7ed258da06d09f17a3302a258e3303414 Closes-Bug: 1377323
This commit is contained in:
parent
5596e63263
commit
e11ecb4f43
@ -44,7 +44,10 @@ Returns the nova instance ID. For example, ``d8093de0-850f-4513-b202-7979de6c0d5
|
||||
----------
|
||||
Fn::Base64
|
||||
----------
|
||||
This returns the Base64 representation of the input string.
|
||||
This is a placeholder for a function to convert an input string to Base64.
|
||||
This function in Heat actually performs no conversion. It is included for
|
||||
the benefit of CFN templates that convert UserData to Base64. Heat only
|
||||
accepts UserData in plain text.
|
||||
|
||||
Parameters
|
||||
~~~~~~~~~~
|
||||
@ -56,9 +59,9 @@ Usage
|
||||
|
||||
::
|
||||
|
||||
{Base64: "convert this string please."}
|
||||
{"Fn::Base64": "convert this string please."}
|
||||
|
||||
Returns the Base64 of the input string.
|
||||
Returns the original input string.
|
||||
|
||||
-------------
|
||||
Fn::FindInMap
|
||||
|
Loading…
x
Reference in New Issue
Block a user