mirror of
https://github.com/farcasclaudiu/terraform-course.git
synced 2026-06-22 09:01:59 +03:00
20 lines
461 B
Terraform
20 lines
461 B
Terraform
data "template_file" "jenkins-init" {
|
|
template = "${file("scripts/jenkins-init.sh")}"
|
|
vars {
|
|
DEVICE = "${var.INSTANCE_DEVICE_NAME}"
|
|
JENKINS_VERSION = "${var.JENKINS_VERSION}"
|
|
TERRAFORM_VERSION = "${var.TERRAFORM_VERSION}"
|
|
}
|
|
}
|
|
data "template_cloudinit_config" "cloudinit-jenkins" {
|
|
|
|
gzip = false
|
|
base64_encode = false
|
|
|
|
part {
|
|
content_type = "text/x-shellscript"
|
|
content = "${data.template_file.jenkins-init.rendered}"
|
|
}
|
|
|
|
}
|