-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* update TF cli,provider version,oci_images * Update install.tf exclude packer directory exclude terraform.lock files. * rename to provider.tf.cli to hide from ORM * update version note Co-authored-by: Collin Poczatek <[email protected]> Co-authored-by: J Collin Poczatek <[email protected]>
- Loading branch information
1 parent
0f94b78
commit bc6a6ed
Showing
8 changed files
with
89 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
#File used only if Stack is a Marketplace Stack | ||
#Update based on Marketplace Listing - App Install Package - Image ocid | ||
#Each element is a single image from Marketpalce Catalog. Elements' name in map is arbitrary | ||
|
||
|
||
variable "marketplace_source_images" { | ||
type = map(object({ | ||
ocid = string | ||
is_pricing_associated = bool | ||
compatible_shapes = list(string) | ||
})) | ||
default = { | ||
main_mktpl_image = { | ||
ocid = "ocid1.image.oc1..<unique_id>" | ||
is_pricing_associated = true | ||
compatible_shapes = [] | ||
} | ||
#Remove comment and add as many marketplace images that your stack references be replicated to other realms | ||
#supporting_image = { | ||
# ocid = "ocid1.image.oc1..<unique_id>" | ||
# is_pricing_associated = false | ||
# compatible_shapes = ["VM.Standard2.2", "VM.Standard.E2.1.Micro"] | ||
#} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,11 @@ | ||
#Version Syntax MAYOR.MINOR.PATH, with a Min version ~<MAYOR.MINOR.0 (zero) and a Max tested version MAYOR.MINOR | ||
|
||
terraform { | ||
required_version = ">= 0.12" | ||
} | ||
required_version = "~> 0.14.0, < 0.15" | ||
required_providers { | ||
# Recommendation from ORM / OCI provider teams | ||
oci = { | ||
version ="~> 4.21.0" | ||
} | ||
} | ||
} |