We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 19ac899 commit 2914894Copy full SHA for 2914894
grabdish/terraform/provider.tf
@@ -1,3 +1,12 @@
1
+terraform {
2
+ required_providers {
3
+ oci = {
4
+ source = "hashicorp/oci"
5
+ version = "4.42.0"
6
+ }
7
8
+}
9
+
10
provider "oci" {
11
region = var.ociRegionIdentifier
12
}
grabdish/utils/terraform.sh
@@ -21,6 +21,16 @@ if ! state_done PROVISIONING; then
21
rm -f containerengine.tf core.tf
22
fi
23
24
+ cat >~/.terraformrc <<!
25
+provider_installation {
26
+ filesystem_mirror {
27
+ path = "/usr/share/terraform/plugins"
28
29
+ direct {
30
31
32
+!
33
34
if ! terraform init; then
35
echo 'ERROR: terraform init failed!'
36
exit
0 commit comments