Skip to content

Commit 6a0411d

Browse files
Updated marktplace required variables
1 parent 6141217 commit 6a0411d

File tree

2 files changed

+20
-0
lines changed

2 files changed

+20
-0
lines changed

oci_images.tf

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
variable "marketplace_source_images" {
2+
type = map(object({
3+
ocid = string
4+
is_pricing_associated = bool
5+
compatible_shapes = set(string)
6+
}))
7+
default = {
8+
main_mktpl_image = {
9+
ocid = "ocid1.image.oc1..aaaaaaaa5yxem7wzie34hi5km4qm2t754tsfxrjuefyjivebrxjad4jcj5oa"
10+
is_pricing_associated = false
11+
compatible_shapes = []
12+
}
13+
supporting_image = {
14+
ocid = "ocid1.image.oc1..aaaaaaaazeefig7dqaoheiyoufmllolc3tuiv2c4xueecpr33dm3k4xjip3a"
15+
is_pricing_associated = false
16+
compatible_shapes = []
17+
}
18+
}
19+
}

schema.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,7 @@ variableGroups:
112112
- ${scratch_nfs_mount}
113113
- ${marketplace_listing_id}
114114
- ${ssh_cidr}
115+
- ${marketplace_source_images}
115116
visible: false
116117
- title: "Debug"
117118
variables:

0 commit comments

Comments
 (0)