mirror of
https://github.com/farcasclaudiu/terraform-course.git
synced 2026-06-22 05:01:55 +03:00
5d9eeb6c4c
* Terraform 0.12
31 lines
617 B
Terraform
31 lines
617 B
Terraform
data "template_file" "init-script" {
|
|
template = file("scripts/init.cfg")
|
|
vars = {
|
|
REGION = var.AWS_REGION
|
|
}
|
|
}
|
|
|
|
data "template_file" "shell-script" {
|
|
template = file("scripts/volumes.sh")
|
|
vars = {
|
|
DEVICE = var.INSTANCE_DEVICE_NAME
|
|
}
|
|
}
|
|
|
|
data "template_cloudinit_config" "cloudinit-example" {
|
|
gzip = false
|
|
base64_encode = false
|
|
|
|
part {
|
|
filename = "init.cfg"
|
|
content_type = "text/cloud-config"
|
|
content = data.template_file.init-script.rendered
|
|
}
|
|
|
|
part {
|
|
content_type = "text/x-shellscript"
|
|
content = data.template_file.shell-script.rendered
|
|
}
|
|
}
|
|
|