mirror of
https://github.com/farcasclaudiu/terraform-course.git
synced 2026-06-22 07:01:56 +03:00
23 lines
522 B
Terraform
23 lines
522 B
Terraform
# note: previous templatefile datasources have been replaced by the template_file() function
|
|
|
|
data "cloudinit_config" "cloudinit-example" {
|
|
gzip = false
|
|
base64_encode = false
|
|
|
|
part {
|
|
filename = "init.cfg"
|
|
content_type = "text/cloud-config"
|
|
content = templatefile("scripts/init.cfg", {
|
|
REGION = var.AWS_REGION
|
|
})
|
|
}
|
|
|
|
part {
|
|
content_type = "text/x-shellscript"
|
|
content = templatefile("scripts/volumes.sh", {
|
|
DEVICE = var.INSTANCE_DEVICE_NAME
|
|
})
|
|
}
|
|
}
|
|
|