diff --git a/BeyondTrustConnector.sln b/BeyondTrustConnector.sln index 600adb8..1ecaa70 100644 --- a/BeyondTrustConnector.sln +++ b/BeyondTrustConnector.sln @@ -15,6 +15,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "deploy", "deploy", "{F48F58 main.bicep = main.bicep main.bicepparam = main.bicepparam modules\vault-role-assignment.bicep = modules\vault-role-assignment.bicep + modules\workbooks.bicep = modules\workbooks.bicep modules\workspace-role-assignment.bicep = modules\workspace-role-assignment.bicep EndProjectSection EndProject diff --git a/main.bicep b/main.bicep index 8ccaa35..c93a76e 100644 --- a/main.bicep +++ b/main.bicep @@ -76,4 +76,11 @@ module asimParsers './modules/asimparsers.bicep' = { workspaceName: datacollection.workspaceName } } + +module workbooks './modules/workbooks.bicep' = { + name: 'workbooks' + params: { + workspaceName: datacollection.workspaceName + } +} \ No newline at end of file diff --git a/modules/workbooks.bicep b/modules/workbooks.bicep new file mode 100644 index 0000000..358da8a Binary files /dev/null and b/modules/workbooks.bicep differ