I need to create powershell script that will increase Azure SQL database storage space with 10%. With GB its not a problem, but I don't have an idea how to do it with %. I have something like that:
$1 = Get-AzSqlDatabase -ResourceGroupName "testRG" -ServerName "test-sql" -DatabaseName "test-sqldb"
$2 = $1.MaxSizeBytes
But how to point that MAxSizeBytes will be 100% and add 10% more ?