mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 04:19:19 -08:00
feat(oci): move variables
This commit is contained in:
parent
e5b2f39e99
commit
02fcb7b3ae
3 changed files with 13 additions and 13 deletions
|
|
@ -24,6 +24,18 @@ variable "tenancy_ocid" {
|
|||
type = string
|
||||
}
|
||||
|
||||
variable "ssh_authorized_keys" {
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "nsg_id" {
|
||||
type = any
|
||||
}
|
||||
|
||||
variable "subnet_id" {
|
||||
type = any
|
||||
}
|
||||
|
||||
data "oci_identity_availability_domains" "this" {
|
||||
compartment_id = var.tenancy_ocid
|
||||
}
|
||||
|
|
|
|||
|
|
@ -30,18 +30,6 @@ variable "micro_display_names" {
|
|||
type = list(string)
|
||||
}
|
||||
|
||||
variable "ssh_authorized_keys" {
|
||||
type = list(string)
|
||||
}
|
||||
|
||||
variable "nsg_id" {
|
||||
type = any
|
||||
}
|
||||
|
||||
variable "subnet_id" {
|
||||
type = any
|
||||
}
|
||||
|
||||
resource "oci_core_instance" "this" {
|
||||
count = 2
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue