page_title | subcategory | description |
---|---|---|
citrix_application_icon Resource - citrix |
CVAD |
Resource for managing application icons. |
Resource for managing application icons.
resource "citrix_application_icon" "example-application-icon" {
raw_data = filebase64("path/to/icon.ico")
}
# Use filebase64 to encode a file's content in base64 format.
file_path
(String) Path to the icon file. Exactly one ofraw_data
andfile_path
is required.raw_data
(String) Prepare an icon in ICO format and convert its binary raw data to base64 encoding. Use the base64 encoded string as the value of this attribute. Exactly one ofraw_data
andfile_path
is required.
id
(String) GUID identifier of the application icon.
Import is supported using the following syntax:
# Application icon can be imported by specifying the ID
terraform import citrix_application_icon.example-application-icon 1
To generate in Linux/Mac terminal use the command:
base64 fileName.ico
To generate in Powershell:
[System.Convert]::ToBase64String(Get-Content fileName.ico -Encoding Byte)