2015-10-06 01:08:33 +02:00
---
2016-01-08 20:34:16 +01:00
layout: "template"
2015-10-06 01:08:33 +02:00
page_title: "Template: cloudinit_multipart"
2016-05-22 00:09:55 +02:00
sidebar_current: "docs-template-datasource-cloudinit-config"
2015-10-06 01:08:33 +02:00
description: |-
2015-11-28 11:07:06 +01:00
Renders a multi-part cloud-init config from source files.
2015-10-06 01:08:33 +02:00
---
# template\_cloudinit\_config
2015-11-28 11:07:06 +01:00
Renders a multi-part cloud-init config from source files.
2015-10-06 01:08:33 +02:00
## Example Usage
```
2015-11-28 11:07:06 +01:00
# Render a part using a `template_file`
2016-05-22 00:09:55 +02:00
data "template_file" "script" {
2015-12-21 19:31:31 +01:00
template = "${file("${path.module}/init.tpl")}"
2015-10-06 01:08:33 +02:00
2015-12-21 19:31:31 +01:00
vars {
consul_address = "${aws_instance.consul.private_ip}"
}
2015-10-06 01:08:33 +02:00
}
2015-11-28 11:07:06 +01:00
# Render a multi-part cloudinit config making use of the part
# above, and other source files
2016-05-22 00:09:55 +02:00
data "template_cloudinit_config" "config" {
2015-12-21 19:31:31 +01:00
gzip = true
base64_encode = true
# Setup hello world script to be called by the cloud-config
part {
filename = "init.cfg"
content_type = "text/part-handler"
2016-05-22 00:09:55 +02:00
content = "${data.template_file.script.rendered}"
2015-12-21 19:31:31 +01:00
}
part {
content_type = "text/x-shellscript"
content = "baz"
}
part {
content_type = "text/x-shellscript"
content = "ffbaz"
}
}
# Start an AWS instance with the cloudinit config as user data
resource "aws_instance" "web" {
ami = "ami-d05e75b8"
instance_type = "t2.micro"
2016-05-22 00:09:55 +02:00
user_data = "${data.template_cloudinit_config.config.rendered}"
2015-11-28 11:07:06 +01:00
}
2015-10-06 01:08:33 +02:00
```
## Argument Reference
The following arguments are supported:
2016-04-11 21:19:04 +02:00
* `gzip` - (Optional) Specify whether or not to gzip the rendered output. Default to `true`
2015-10-06 01:08:33 +02:00
2016-04-11 21:19:04 +02:00
* `base64_encode` - (Optional) Base64 encoding of the rendered output. Default to `true`
2015-10-06 01:08:33 +02:00
2015-11-28 11:07:06 +01:00
* `part` - (Required) One may specify this many times, this creates a fragment of the rendered cloud-init config file. The order of the parts is maintained in the configuration is maintained in the rendered template.
2015-10-06 01:08:33 +02:00
The `part` block supports:
* `filename` - (Optional) Filename to save part as.
* `content_type` - (Optional) Content type to send file as.
* `content` - (Required) Body for the part.
* `merge_type` - (Optional) Gives the ability to merge multiple blocks of cloud-config together.
## Attributes Reference
The following attributes are exported:
2015-11-28 11:07:06 +01:00
* `rendered` - The final rendered multi-part cloudinit config.