| page_title | subcategory | description |
|---|---|---|
citrix_application_icon Resource - citrix |
CVAD |
Resource for managing application icons.
-> Note Please use just one icon resource per icon. Having multiple icon resources with the same icon data will result in inconsistencies. |
Resource for managing application icons.
-> Note Please use just one icon resource per icon. Having multiple icon resources with the same icon data will result in inconsistencies.
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_dataandfile_pathis required.raw_data(String, Sensitive) 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_dataandfile_pathis 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 1To generate in Linux/Mac terminal use the command:
base64 fileName.ico
To generate in Powershell:
[System.Convert]::ToBase64String(Get-Content fileName.ico -Encoding Byte)