1 つのリソース ブロックで複数の起動構成を作成する Terraform コードを作成しようとしています。注意が必要な部分は、各起動構成に使用される一意のテンプレートが必要な各起動構成です。私は Terraform 0.11.10 を使用しているので、count を使用する必要があると思います。以下のコードは、同じテンプレートで複数の起動構成を作成します。それぞれに異なるテンプレートを使用できるようにする必要があります。どんなアドバイスも役に立ちます。
起動設定
resource "aws_launch_configuration" "launch_configuration" {
count = "${(var.enable ? 1 : 0) * var.number_of_zones}"
name = "${var.cluster_name}-launch_node_${count.index}"
key_name = "${var.key_name2}"
image_id = "${lookup(var.amis, "${var.aws_region}.${var.licensee_key == "" && var.licensee == "" ? "enterprise" : "byol"}")}"
user_data = "${element(data.template_file.user_data.*.rendered, count.index)}"
security_groups = [
"${aws_security_group.instance_security_group.id}",
]
instance_type = "${var.instance_type}"
iam_instance_profile = "${aws_iam_instance_profile.instance_host_profile.name}"
ebs_block_device {
device_name = "/dev/sdf"
no_device = true
}
テンプレートファイル
data "template_file" "user_data" {
count = "${(var.enable ? 1 : 0) * var.number_of_zones}"
template = "${file("userdata.sh")}"
vars {
node = "Node${count.index + 1}_#"
master = "${count.index == 0 ? 1 : 0}"
licensee = "${var.licensee}"
licensee_key = "${var.licensee_key}"
cluster_name = "${var.cluster_name}"
ebs_volume = "${element(aws_ebs_volume.volume.*.id, count.index)}"
volume_size = "${var.volume_size}"
volume_type = "${var.volume_type}"
ansible_git_ssh_key = "${var.ansible_git_ssh_key}"
ansible_pull_url = "${var.ansible_pull_url}"
ansible_playbook_file = "${var.ansible_playbook_file}"
ansible_inventory_file = "${var.ansible_inventory_file}"
ansible_pull_branch = "${var.ansible_pull_branch}"
}