monorepo lab stuff, init zen
This commit is contained in:
parent
cfc15bba89
commit
645e09f9dd
54 changed files with 67498 additions and 406 deletions
25
terraform/main.tf
Normal file
25
terraform/main.tf
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
terraform {
|
||||
required_version = ">= 1.3.0"
|
||||
|
||||
cloud {
|
||||
organization = "lab-xyz"
|
||||
workspaces {
|
||||
name = "xyz-homelab"
|
||||
}
|
||||
}
|
||||
|
||||
required_providers {
|
||||
oci = {
|
||||
source = "oracle/oci"
|
||||
version = ">= 4.90.0"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
provider "oci" {
|
||||
tenancy_ocid = var.tenancy_ocid
|
||||
user_ocid = var.user_ocid
|
||||
private_key = var.private_key
|
||||
fingerprint = var.fingerprint
|
||||
region = var.region
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue