0

I need my ARM template to use conditional statement based on presence of Azure Files share. How do I find out if fileshare exists inside ARM to deploy certain other types of resources based on that?

Gregory Suvalian
  • 3,566
  • 7
  • 37
  • 66

1 Answers1

0

There's no simple way to do this... ARM is declarative and should be idempotent. But you could work around the scenario by using a deploymentScript to check existence.

bmoore-msft
  • 8,376
  • 20
  • 22