summaryrefslogtreecommitdiffstats
path: root/roles/openshift_aws_launch_config/templates/cloud-init.j2
blob: 1a1e2955061296bfdd24c8d6af8ce89805ca0954 (plain)
1
2
3
4
5
6
7
8
9
{% if r_openshift_aws_launch_config_bootstrap_token is defined and r_openshift_aws_launch_config_bootstrap_token is not '' %}
#cloud-config
write_files:
- path: /root/csr_kubeconfig
  owner: root:root
  permissions: '0640'
  content: |-
  {{ r_openshift_aws_launch_config_bootstrap_token }}
{% endif %}