mirror of
https://github.com/idanoo/fediservices.nz-infra
synced 2025-07-01 22:02:15 +00:00
11 lines
256 B
HCL
11 lines
256 B
HCL
# Userdata
|
|
data "template_file" "userdata" {
|
|
template = file("${path.module}/templates/userdata.tpl")
|
|
|
|
vars = {
|
|
region = data.aws_region.current.name
|
|
data_root = "/data"
|
|
volume = aws_ebs_volume.ebs.id
|
|
domain = var.domain
|
|
}
|
|
}
|