Git Product home page Git Product logo

my-azure-env's Introduction

my-azure-env

To install Azure bicep for use with Azure Powershell: winget install -e --id Microsoft.Bicep

A list of all templates available: https://docs.microsoft.com/en-us/azure/templates/

devcontainer

This repository provides a devcontainer with PowerShell, Azure CLI and Azure PowerShell. Login using one of the following commands.

For Azure CLI: az login --use-device-code For Azure PowerShell: Connect-AzAccount -UseDeviceAuthentication

Commands

To preview the modifications the bicep will make to the resource group: New-AzResourceGroupDeployment -TemplateFile [BICEP_FILE] -TemplateParameterFile [PARAM_FILE] -ResourceGroupName [RESOURCE_GROUP] -WhatIf To execute the bicep file on a resource group: New-AzResourceGroupDeployment -TemplateFile [BICEP_FILE] -TemplateParameterFile [PARAM_FILE] -ResourceGroupName [RESOURCE_GROUP] -Confirm

To remove everything except the resources from base.bicep: New-AzResourceGroupDeployment -TemplateFile base.bicep -TemplateParameterFile [PARAM_FILE] -ResourceGroupName [RESOURCE_GROUP] -Mode Complete -WhatIf

Parameters

A template file can be specified with configuration parameters.

base.bicep parameters

Parameter Default value Description
homeIp 127.0.0.1/32 IP address to whitelist
publicKey Public key for SSH access

Example base.params.json file:

{
    "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#",
    "contentVersion": "1.0.0.0",
    "parameters": {
        "homeIp": {
            "value": "127.0.0.1/32"
        },
        "publicKey": {
            "value": ""
        }
    }
}

keyvault.bicep parameters

Parameter Default value Description
tenantId Tenant Id
{
    "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#",
    "contentVersion": "1.0.0.0",
    "parameters": {
        "tenantId": {
            "value": ""
        }
    }
}

my-azure-env's People

Contributors

ninckblokje avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.