Skip to content

Commit a1f7e1b

Browse files
Merge pull request #18 from CrowdStrike/agrant/add-vcn-auto-db-permissions
Add permissions for virtual-network-family and autonomous databases
2 parents 4cb50d8 + 712fa4b commit a1f7e1b

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
@@ -122,7 +122,8 @@ resource "oci_identity_policy" "fcs_inventory_policy_without_domains" {
122122
"Allow group ${var.group_name} to inspect orm-stacks in tenancy",
123123
"Allow group ${var.group_name} to read instances in tenancy",
124124
"Allow group ${var.group_name} to read buckets in tenancy",
125-
"Allow group ${var.group_name} to read vcns in tenancy"
125+
"Allow group ${var.group_name} to read virtual-network-family in tenancy",
126+
"Allow group ${var.group_name} to inspect autonomous-database-family in tenancy"
126127
]
127128
}
128129

@@ -142,7 +143,8 @@ resource "oci_identity_policy" "fcs_inventory_policy_with_domains" {
142143
"Allow group 'Default'/'${var.group_name}' to inspect orm-stacks in tenancy",
143144
"Allow group 'Default'/'${var.group_name}' to read instances in tenancy",
144145
"Allow group 'Default'/'${var.group_name}' to read buckets in tenancy",
145-
"Allow group 'Default'/'${var.group_name}' to read vcns in tenancy"
146+
"Allow group 'Default'/'${var.group_name}' to read virtual-network-family in tenancy",
147+
"Allow group 'Default'/'${var.group_name}' to inspect autonomous-database-family in tenancy"
146148
]
147149
}
148150

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.8"
7+
value = "v0.3.9"
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.8"
7+
value = "v0.3.9"
88
description = "The version of CrowdStrike's OCI integration supported by this template."
99
}
1010

0 commit comments

Comments
 (0)