mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-10 04:49:19 -08:00
76 lines
1.7 KiB
HCL
76 lines
1.7 KiB
HCL
data "oci_core_images" "this" {
|
|
compartment_id = var.tenancy_ocid
|
|
|
|
operating_system = "Canonical Ubuntu"
|
|
shape = local.shapes.micro
|
|
sort_by = "TIMECREATED"
|
|
sort_order = "DESC"
|
|
state = "available"
|
|
|
|
filter {
|
|
name = "display_name"
|
|
values = ["^Canonical-Ubuntu-([\\.0-9-]+)$"]
|
|
regex = true
|
|
}
|
|
}
|
|
|
|
data "cloudinit_config" "this" {
|
|
part {
|
|
content = file("${path.module}/cloudinit_micro_ubuntu.yaml")
|
|
}
|
|
}
|
|
|
|
variable "micro_display_names" {
|
|
type = list(string)
|
|
}
|
|
|
|
resource "oci_core_instance" "this" {
|
|
count = 2
|
|
|
|
availability_domain = "dBWL:CA-TORONTO-1-AD-1"
|
|
compartment_id = var.tenancy_ocid
|
|
shape = local.shapes.micro
|
|
|
|
display_name = var.micro_display_names[count.index]
|
|
preserve_boot_volume = false
|
|
|
|
metadata = {
|
|
ssh_authorized_keys = var.ssh_authorized_keys
|
|
user_data = data.cloudinit_config.this.rendered
|
|
}
|
|
|
|
agent_config {
|
|
are_all_plugins_disabled = true
|
|
is_management_disabled = true
|
|
is_monitoring_disabled = true
|
|
}
|
|
|
|
availability_config {
|
|
is_live_migration_preferred = null
|
|
}
|
|
|
|
create_vnic_details {
|
|
assign_public_ip = true
|
|
display_name = var.micro_display_names[count.index]
|
|
hostname_label = lower(var.micro_display_names[count.index])
|
|
nsg_ids = [var.nsg_id]
|
|
subnet_id = var.subnet_id
|
|
}
|
|
|
|
source_details {
|
|
source_id = data.oci_core_images.this.images.0.id
|
|
source_type = "image"
|
|
boot_volume_size_in_gbs = 50
|
|
}
|
|
|
|
lifecycle {
|
|
ignore_changes = [
|
|
metadata,
|
|
source_details.0.source_id
|
|
]
|
|
}
|
|
}
|
|
|
|
locals {
|
|
micros = oci_core_instance.this
|
|
}
|