Skip to content

Commit 84afa7d

Browse files
Add permissions to ingest objectstorage buckets (#16)
* Update outputs.tf * Update main.tf add permissions to ingest objectstorage buckets
1 parent 29807e3 commit 84afa7d

3 files changed

Lines changed: 6 additions & 4 deletions

File tree

templates/Resource_Manager_Template/modules/iom/main.tf

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,8 @@ resource "oci_identity_policy" "fcs_inventory_policy_without_domains" {
120120
"Allow group ${var.group_name} to inspect groups in tenancy",
121121
"Allow group ${var.group_name} to inspect domains in tenancy",
122122
"Allow group ${var.group_name} to inspect orm-stacks in tenancy",
123-
"Allow group ${var.group_name} to read instances in tenancy"
123+
"Allow group ${var.group_name} to read instances in tenancy",
124+
"Allow group ${var.group_name} to read buckets in tenancy"
124125
]
125126
}
126127

@@ -138,7 +139,8 @@ resource "oci_identity_policy" "fcs_inventory_policy_with_domains" {
138139
"Allow group 'Default'/'${var.group_name}' to inspect groups in tenancy",
139140
"Allow group 'Default'/'${var.group_name}' to inspect domains in tenancy",
140141
"Allow group 'Default'/'${var.group_name}' to inspect orm-stacks in tenancy",
141-
"Allow group 'Default'/'${var.group_name}' to read instances in tenancy"
142+
"Allow group 'Default'/'${var.group_name}' to read instances in tenancy",
143+
"Allow group 'Default'/'${var.group_name}' to read buckets in tenancy"
142144
]
143145
}
144146

templates/Resource_Manager_Template/modules/iom/outputs.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ output "user_ocid" {
44
}
55

66
output "template_version" {
7-
value = "v0.3.6"
7+
value = "v0.3.7"
88
description = "The version of CrowdStrike's OCI integration supported by this template"
99
}

templates/Resource_Manager_Template/outputs.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ output "user_ocid" {
44
}
55

66
output "template_version" {
7-
value = "v0.3.6"
7+
value = "v0.3.7"
88
description = "The version of CrowdStrike's OCI integration supported by this template."
99
}
1010

0 commit comments

Comments
 (0)