Skip to content

Commit 5f6bfb1

Browse files
authored
Merge pull request #35 from CrowdStrike/CSPG-68999-support-mysql-permission
feat(permissions): adding permission to support mysql assets
2 parents 47db3fa + 3c47734 commit 5f6bfb1

3 files changed

Lines changed: 4 additions & 2 deletions

File tree

templates/Resource_Manager_Template/modules/iom/main.tf

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -150,6 +150,7 @@ resource "oci_identity_policy" "fcs_inventory_policy_without_domains" {
150150
"Allow group ${var.group_name} to read logging-family in tenancy",
151151
"Allow group ${var.group_name} to read route-tables in tenancy",
152152
"Allow group ${var.group_name} to read network-security-groups in tenancy",
153+
"Allow group ${var.group_name} to read mysql-family in tenancy",
153154
]
154155
}
155156

@@ -197,6 +198,7 @@ resource "oci_identity_policy" "fcs_inventory_policy_with_domains" {
197198
"Allow group 'Default'/'${var.group_name}' to read logging-family in tenancy",
198199
"Allow group 'Default'/'${var.group_name}' to read route-tables in tenancy",
199200
"Allow group 'Default'/'${var.group_name}' to read network-security-groups in tenancy",
201+
"Allow group 'Default'/'${var.group_name}' to read mysql-family in tenancy",
200202

201203
]
202204
}

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

0 commit comments

Comments
 (0)