Skip to main content

Azure - How to create resource group

Azure home -> Select Resource group

 Subscription is user payment method configured

Give name for resource group - Meaningful name with project name

Region - nearest region to your location

Note: there is option called CDN for you to make your resources available across different regions  

select review and create

Comments

Popular posts from this blog

how to check powershell version

 Run powershell as administrator      Run below command $PSVersionTable.PSVersion  

Calculate possible ceiling max values based on denominator

                    double higherMaxValue = 100; double maxValue = 1235; int cntDigit = maxValue >= 10 ? maxValue.ToString().Length : 1; int denominator = (int)Math.Pow(10, cntDigit - 1); higherMaxValue = maxValue + denominator - (maxValue % denominator); Console.WriteLine("maxValue:"+maxValue+" higherMaxValue:"+higherMaxValue);                       // maxValue:1235 higherMaxValue:2000