Deploy-FinOpsHub Deploys a FinOps hub instance.

Syntax Examples

On this page

The Deploy-FinOpsHub command either creates a new or updates an existing FinOps hub instance by deploying an Azure Resource Manager deployment template. The FinOps hub template is downloaded from GitHub. To learn more about the template, see the FinOps hub template.

Deploy-FinOpsHub calls Initialize-FinOpsHubDeployment before deploying the template.


🧮 Syntax

Deploy-FinOpsHub `
    -Name <string> `
    -ResourceGroup <string> `
    -Location <string> `
    [-Version <string>] `
    [-Preview] `
    [-StorageSku <string>] `
    [-Tags <object>] `
    [<CommonParameters>]


📥 Parameters

Name Description
‑Name Required. Name of the FinOps hub instance.
‑ResourceGroup Required. Name of the resource group to deploy to. Will be created if it doesn’t exist.
‑Location Required. Azure location to execute the deployment from.
‑Version Optional. Version of the FinOps hub template to use. Default = “latest”.
‑Preview Optional. Indicates that preview releases should also be included. Default = false.
‑StorageSku Optional. Storage account SKU. Premium_LRS = Lowest cost, Premium_ZRS = High availability. Note Standard SKUs are not available for Data Lake gen2 storage. Default = “Premium_LRS”.
‑Tags Optional. Tags for all resources.


🌟 Examples

Deploy latest version

Deploy-FinOpsHub `
    -Name MyHub `
    -ResourceGroup MyNewResourceGroup `
    -Location westus

Deploys a FinOps hub instance named MyHub to the MyNewResourceGroup resource group. If the resource group does not exist, it will be created. If the hub already exists, it will be updated to the latest version.

Deploy specific version

Deploy-FinOpsHub `
    -Name MyHub `
    -ResourceGroup MyExistingResourceGroup `
    -Location westus `
    -Version 0.1.1

Deploys a FinOps hub instance named MyHub to the MyExistingResourceGroup resource group using version 0.1.1 of the template. This version is required in order to deploy to Azure Gov or Azure China as of February 2024 since FOCUS exports are not available from Cost Management in those environments. If the resource group does not exist, it will be created. If the hub already exists, it will be updated to version 0.1.1.



  • 🏦 FinOps hubs – Open, extensible, and scalable cost reporting.



This site uses Just the Docs, a documentation theme for Jekyll.