Skip to content

Commit e4484c7

Browse files
committed
fixing the export example to be security compliant
1 parent 6a854a6 commit e4484c7

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

docs/examples/storage/fss/export.tf

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,16 @@ resource "oci_file_storage_export" "my_export_fs1_mt1" {
66

77
export_options = [
88
{
9-
source = "0.0.0.0/0"
10-
access = "READ_ONLY"
11-
identity_squash = "NONE"
12-
require_privileged_source_port = false
9+
source = "10.0.0.0/8"
10+
access = "READ_ONLY"
11+
identity_squash = "ALL"
12+
require_privileged_source_port = true
13+
},
14+
{
15+
source = "127.0.0.1"
16+
access = "READ_WRITE"
17+
identity_squash = "NONE"
18+
require_privileged_source_port = true
1319
},
1420
]
1521
}

0 commit comments

Comments
 (0)