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 6a854a6 commit e4484c7Copy full SHA for e4484c7
docs/examples/storage/fss/export.tf
@@ -6,10 +6,16 @@ resource "oci_file_storage_export" "my_export_fs1_mt1" {
6
7
export_options = [
8
{
9
- source = "0.0.0.0/0"
10
- access = "READ_ONLY"
11
- identity_squash = "NONE"
12
- require_privileged_source_port = false
+ source = "10.0.0.0/8"
+ access = "READ_ONLY"
+ identity_squash = "ALL"
+ require_privileged_source_port = true
13
+ },
14
+ {
15
+ source = "127.0.0.1"
16
+ access = "READ_WRITE"
17
+ identity_squash = "NONE"
18
19
},
20
]
21
}
0 commit comments