11 lines
202 B
Terraform
11 lines
202 B
Terraform
|
data "triton_image" "nixos" {
|
||
|
name = "nixos-22"
|
||
|
most_recent = true
|
||
|
}
|
||
|
data "triton_network" "private" {
|
||
|
name = "My-Fabric-Network"
|
||
|
}
|
||
|
data "triton_network" "public" {
|
||
|
name = "public_ip_pool"
|
||
|
}
|