mirror of
https://gitea.com/mcereda/oam.git
synced 2026-02-09 05:44:23 +00:00
26 lines
666 B
Plaintext
26 lines
666 B
Plaintext
#cloud-config
|
|
|
|
# Replicated requires Docker
|
|
# TFE requires Replicated
|
|
|
|
# See https://cloudinit.readthedocs.io/en/latest/reference/modules.html#write-files
|
|
write_files:
|
|
- encoding: b64
|
|
path: ${replicated_config_file_location}
|
|
content: |
|
|
${replicated_config_file_contents_b64encoded}
|
|
permissions: '0600'
|
|
defer: true
|
|
- encoding: b64
|
|
path: ${replicated_license_file_location}
|
|
content: |
|
|
${replicated_license_file_contents_b64encoded}
|
|
permissions: '0600'
|
|
defer: true
|
|
- encoding: b64
|
|
path: ${tfe_config_file_location}
|
|
content: |
|
|
${tfe_config_file_contents_b64encoded}
|
|
permissions: '0600'
|
|
defer: true
|