farmer icon indicating copy to clipboard operation
farmer copied to clipboard

Repeatable Azure deployments with ARM templates - made easy!

Results 114 farmer issues
Sort by recently updated
recently updated
newest added

I'm building an app service app that handles authentication through an Identity Provider and App registrations. I'd like to be able to use Farmer to create and manage that identity...

enhancement
up-for-grabs

**template** resource symbolicname 'Microsoft.Storage/storageAccounts/queueServices/queues@2021-08-01' = { name: 'string' parent: resourceSymbolicName properties: { **metadata: {}** } } https://docs.microsoft.com/en-us/azure/templates/microsoft.storage/storageaccounts/queueservices/queues?tabs=bicep

This PR closes https://github.com/CompositionalIT/farmer/issues/791 The changes in this PR are as follows: * Makes `zones` configurable on VMs I have read the [contributing guidelines](CONTRIBUTING.md) and have completed the following: *...

I would like to able to configure an application gateway with an HTTPS listener. This is not possible today (cf. TODOs in ApplicationGateway.Builder). I would like to contribute and complete...

Farmer has support for azure container registries and also for container services. Right now our deployment is a multi step process. 0) create a container registry in farmer and store...

Currently in Farmer, VM data disks are always specified in the VM resource and created with `createOption = "Empty"`. ARM also supports creating disks [as a separate resource](https://docs.microsoft.com/en-us/azure/templates/microsoft.compute/disks?tabs=json), and attaching...

This PR closes #838 The changes in this PR are as follows: * Allows you to specify slot settings for web app/functions using slot_setting and slot_settings I have read the...

_Copied from comments on https://github.com/CompositionalIT/farmer/issues/846_ It appears that in the ARM template the generated dependsOn resource ID is invalid when using web app certificates. ``` json "apiVersion": "2020-10-01", "dependsOn": [...

It should be possible to provide the value of an ARM expression to `enable_cors` in the `functions` builder. Currently doing so results in an exception ``` Unhandled exception. System.UriFormatException: Invalid...

triage

Currently every IBuilder defines a `BuildResources` method which takes in a single argument which is the location. I propose that this be expanded to a context object which could include...