mirror of
https://github.com/farcasclaudiu/terraform-course.git
synced 2026-06-22 05:01:55 +03:00
14 lines
312 B
Terraform
14 lines
312 B
Terraform
data "cloudinit_config" "cloudinit-jenkins" {
|
|
gzip = false
|
|
base64_encode = false
|
|
|
|
part {
|
|
content_type = "text/x-shellscript"
|
|
content = templatefile("scripts/jenkins-init.sh", {
|
|
DEVICE = var.INSTANCE_DEVICE_NAME
|
|
JENKINS_VERSION = var.JENKINS_VERSION
|
|
})
|
|
}
|
|
}
|
|
|