Skip to content

Commit b18764a

Browse files
committed
Add main.tf for OCI template
1 parent 7ef50dc commit b18764a

File tree

2 files changed

+509
-0
lines changed
  • registry

2 files changed

+509
-0
lines changed
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
terraform {
2+
required_providers {
3+
coder = {
4+
source = "coder/coder"
5+
}
6+
oci = {
7+
source = "oracle/oci"
8+
}
9+
cloudinit = {
10+
source = "hashicorp/cloudinit"
11+
}
12+
}
13+
}
14+
15+
variable "compartment_ocid" {
16+
description = "The OCID of the compartment to create resources in"
17+
type = string
18+
}

0 commit comments

Comments
 (0)