highbond_encoder (Data Source)
Schema
Required
| encoding | String | The encoding to encode to e.g. UTF-8, UTF-16LE. | 
Optional
| encoded_file_path | String | Optionally, the file to write the encoded content to. | 
| id | String | The ID of this resource. | 
| source_content | String | The content to encode. | 
| source_file_path | String | The path to the file you'd want to read and encode (mutually exclusive to source content). | 
Read-Only
| encoded_content | String | The encoded content. | 
Example Usage
data "highbond_encoder" "main" {
  encoding       = "UTF-8"
  source_content = "vibranium"
}
