File tree Expand file tree Collapse file tree 10 files changed +41
-22
lines changed Expand file tree Collapse file tree 10 files changed +41
-22
lines changed Original file line number Diff line number Diff line change @@ -15,3 +15,4 @@ generated/**
15
15
# visual code
16
16
** /.vscode /*
17
17
18
+ .terraform.lock.hcl
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ module "vcn" {
36
36
37
37
module "bastion" {
38
38
source = " oracle-terraform-modules/bastion/oci"
39
- version = " 3.0 .0"
39
+ version = " 3.1 .0"
40
40
41
41
tenancy_id = var. tenancy_id
42
42
compartment_id = var. compartment_id
@@ -84,7 +84,7 @@ module "bastion" {
84
84
85
85
module "operator" {
86
86
source = " oracle-terraform-modules/operator/oci"
87
- version = " 3.0.3 "
87
+ version = " 3.1.0 "
88
88
89
89
tenancy_id = var. tenancy_id
90
90
Original file line number Diff line number Diff line change
1
+ terraform {
2
+ required_providers {
3
+ oci = {
4
+ source = " oracle/oci"
5
+ # pass oci home region provider explicitly for identity operations
6
+ version = " >= 4.67.3"
7
+ }
8
+ }
9
+ required_version = " >= 1.0.0"
10
+ }
Original file line number Diff line number Diff line change 4
4
terraform {
5
5
required_providers {
6
6
oci = {
7
- source = " hashicorp /oci"
7
+ source = " oracle /oci"
8
8
# pass oci home region provider explicitly for identity operations
9
9
configuration_aliases = [oci.home]
10
+ version = " >= 4.67.3"
10
11
}
11
12
}
12
13
required_version = " >= 1.0.0"
Original file line number Diff line number Diff line change @@ -73,8 +73,4 @@ variable "public_lb_allowed_ports" {
73
73
74
74
variable "create_fss" {
75
75
type = bool
76
- }
77
-
78
- variable "create_fss" {
79
- type = bool
80
- }
76
+ }
Original file line number Diff line number Diff line change
1
+ terraform {
2
+ required_providers {
3
+ oci = {
4
+ source = " oracle/oci"
5
+ # pass oci home region provider explicitly for identity operations
6
+ version = " >= 4.67.3"
7
+ }
8
+ }
9
+ required_version = " >= 1.0.0"
10
+ }
Original file line number Diff line number Diff line change 4
4
terraform {
5
5
required_providers {
6
6
oci = {
7
- source = " hashicorp /oci"
7
+ source = " oracle /oci"
8
8
# pass oci home region provider explicitly for identity operations
9
9
configuration_aliases = [oci.home]
10
+ version = " >= 4.67.3"
10
11
}
11
12
}
12
13
required_version = " >= 1.0.0"
Original file line number Diff line number Diff line change 1
1
# Copyright 2017, 2021 Oracle Corporation and/or affiliates.
2
2
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl
3
3
4
- terraform {
5
- required_providers {
6
- oci = {
7
- source = " hashicorp/oci"
8
- # pass oci home region provider explicitly for identity operations
9
- configuration_aliases = [oci.home]
10
- }
11
- }
12
- required_version = " >= 1.0.0"
13
- }
14
-
15
4
# Create file system
16
5
resource "oci_file_storage_file_system" "fss" {
17
6
availability_domain = local. availability_domain
Original file line number Diff line number Diff line change
1
+ terraform {
2
+ required_providers {
3
+ oci = {
4
+ source = " oracle/oci"
5
+ # pass oci home region provider explicitly for identity operations
6
+ configuration_aliases = [oci.home]
7
+ version = " >= 4.67.3"
8
+ }
9
+ }
10
+ required_version = " >= 1.0.0"
11
+ }
Original file line number Diff line number Diff line change 4
4
terraform {
5
5
required_providers {
6
6
oci = {
7
- source = " oracle/oci"
8
- version = " >= 4.67.3"
7
+ source = " oracle/oci"
9
8
configuration_aliases = [oci.home]
9
+ version = " >= 4.67.3"
10
10
}
11
11
}
12
12
required_version = " >= 1.0.0"
You can’t perform that action at this time.
0 commit comments