Hi @Donations, there are certain types of free services available in Azure and you can refer the attached MS Doc.
Also visit the Azure Portal and search for free services to get the available Azure free services.
Now coming to the deployment, you can deploy the required individual Azure free services with automating process using Bicep, ARM or also Terraform.
Let's take an example for deploying a standard storage account and a free app service plan using bicep as shown below.
App service plan:
resource plan 'Microsoft.Web/serverfarms@2024-04-01' = {
name: 'freeresource'
location: 'WestUS2'
properties: {
}
sku: {
name: 'F1'
tier: 'Free'
}
}
Storage account:
resource storageAccount 'Microsoft.Storage/storageAccounts@2022-09-01' = {
name: 'newfrst'
location: 'WestUS'
sku: {
name: 'Standard_LRS'
}
kind: 'StorageV2'
}
In the same way, you could be able to deploy all the available free Azure services one after the other individually using either of the automated process.
If you want to do it with Azure Devops, you can directly create a pipeline (.yaml file) and add the Azure service connection for the Bicep or any used deployment.
Hope this helps.
If the answer is helpful, please click Accept Answer and kindly upvote it. If you have any further questions about this answer, please click Comment.