mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 04:19:19 -08:00
fix(ops): forgot path.module existed
This commit is contained in:
parent
7f34a86a5c
commit
07cbaca206
2 changed files with 2 additions and 10 deletions
|
|
@ -1,7 +1,3 @@
|
||||||
locals {
|
|
||||||
takeover_oracle = file("cloudinit_flex_oracle.yaml")
|
|
||||||
}
|
|
||||||
|
|
||||||
data "oci_core_images" "that" {
|
data "oci_core_images" "that" {
|
||||||
compartment_id = var.tenancy_ocid
|
compartment_id = var.tenancy_ocid
|
||||||
|
|
||||||
|
|
@ -14,7 +10,7 @@ data "oci_core_images" "that" {
|
||||||
|
|
||||||
data "cloudinit_config" "that" {
|
data "cloudinit_config" "that" {
|
||||||
part {
|
part {
|
||||||
content = local.takeover_oracle
|
content = file("${path.module}/cloudinit_flex_oracle.yaml")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,3 @@
|
||||||
locals {
|
|
||||||
takeover_ubuntu = file("cloudinit_micro_ubuntu.yaml")
|
|
||||||
}
|
|
||||||
|
|
||||||
data "oci_core_images" "this" {
|
data "oci_core_images" "this" {
|
||||||
compartment_id = var.tenancy_ocid
|
compartment_id = var.tenancy_ocid
|
||||||
|
|
||||||
|
|
@ -20,7 +16,7 @@ data "oci_core_images" "this" {
|
||||||
|
|
||||||
data "cloudinit_config" "this" {
|
data "cloudinit_config" "this" {
|
||||||
part {
|
part {
|
||||||
content = local.takeover_ubuntu
|
content = file("${path.module}/cloudinit_micro_ubuntu.yaml")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue