Skip to content

Commit

Permalink
Move modules into finops-hub folder (#121)
Browse files Browse the repository at this point in the history
  • Loading branch information
flanakin authored Apr 27, 2023
1 parent 433388e commit 46ec829
Show file tree
Hide file tree
Showing 44 changed files with 15 additions and 13 deletions.
24 changes: 13 additions & 11 deletions src/architecture.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,18 @@
# 🏗️ Architecture

| Name | Description |
| -------------------------------------------------- | -------------------------------- |
| [docs](../docs) | Public-facing toolkit docs. |
| ├─ [deploy](../docs/deploy) | How to deploy the toolkit. |
| ├─ [reports](../docs/reports) | About Power BI reports. |
| └─ [templates](../docs/templates) | About ARM deployment templates. |
|       └─ [modules](../docs/modules) | About Bicep modules. |
| [src](../src) | Source code and internal docs. |
| ├─ [bicep-registry](../src/bicep-registry) | Bicep registry module templates. |
| ├─ [modules](../src/modules) | Bicep modules. |
| └─ [templates](../src/templates) | ARM deployment templates. |
| Name | Description |
| ----------------------------------------------------------------- | -------------------------------- |
| [docs](../docs) | Public-facing toolkit docs. |
| ├─ [bicep-registry](../docs/bicep-registry) | Bicep registry module docs. |
| ├─ [deploy](../docs/deploy) | How to deploy the toolkit. |
| ├─ [finops-hub](../docs/finops-hub) | FinOps hub docs. |
|   ├─ [modules](../docs/finops-hub/modules) | FinOps hub Bicep modules. |
|   └─ [reports](../docs/finops-hub/reports) | FinOps hub Power BI reports. |
| └─ [optimization-workbook](../docs/optimization-workbook) | Cost optimization workbook docs. |
| [src](../src) | Source code and dev docs. |
| ├─ [bicep-registry](../src/bicep-registry) | Bicep registry modules. |
| └─ [templates](../src/templates) | ARM deployment templates. |
|       └─ [finops-hub](../src/templates/finops-hub) | FinOps hub template. |

Files and folders should use kebab casing (e.g., `this-is-my-folder`). The only exception is for RP namespaces in module paths.

Expand Down
2 changes: 1 addition & 1 deletion src/templates/finops-hub/main.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ param exportScopes array = []
* Resources
*/

module hub '../../modules/hub.bicep' = {
module hub 'modules/hub.bicep' = {
name: 'hub'
params: {
hubName: hubName
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# 📦 FinOps toolkit modules

All FinOps toolkit module source is available at the root of this directory. For summary details, see [public docs](../../docs/templates/modules).
All FinOps toolkit module source is available at the root of this directory. For summary details, see [public docs](../../../../docs/finops-hub/modules).

Modules:

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 46ec829

Please sign in to comment.