in Technology by

Can we deploy Azure Functions referencing a zip file with relative path?

1 Answer

0 votes
by

Once the Function App is created, you will see that the sample has used MS Deploy extension and set the packageUri parameter and you assign the value to your function app zip (deployed in a storage account or access over the internet). Once the function app resource is created the below ARM template will deploy the function app code on your depended resource.



  1. {
  2. "apiVersion": "2014-06-01",
  3. "name": "MSDeploy",
  4. "type": "Extensions",
  5. "dependsOn": [
  6. "[concat('Microsoft.Web/Sites/', parameters('name'))]",
  7. ],
  8. "properties": {
  9. "packageUri": "https://auxmktplceprod.blob.core.windows.net/packages/wordpress-4.2.4-IIS.zip",
  10. }
  11. }

Related questions

+1 vote
    You need to deploy a virtual machine on Azure with a low memory entry level requirement. Which virtual machine sizes should you consider choosing?...
asked Oct 20, 2020 in Technology by JackTerrance
0 votes
    What file types you can deploy into WebSphere?...
asked Jun 11, 2021 in Technology by JackTerrance
0 votes
    What happens when you try to deploy a file with multiple contracts?...
asked Jan 22, 2023 in Technology by JackTerrance
0 votes
    My application is receiving email through SMTP server. There are one or more attachments in the email and ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Mar 11, 2022 in Education by JackTerrance
0 votes
    My application is receiving email through SMTP server. There are one or more attachments in the email and ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Mar 11, 2022 in Education by JackTerrance
0 votes
    My application is receiving email through SMTP server. There are one or more attachments in the email and ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Mar 11, 2022 in Education by JackTerrance
0 votes
    When I go to command mode and type :!mycommand % I get my command executed on the current file ( ... JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Jan 13, 2022 in Education by JackTerrance
0 votes
    What kind of path can the PHP file be? (a) Absolute (b) Relative (c) Either Absolute or Relative ... JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Oct 22, 2021 in Education by JackTerrance
0 votes
    This question already has answers here: Saving path in String (4 answers) Closed 5 years ago. I'm ... JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Jun 30, 2022 in Education by JackTerrance
0 votes
    This question already has answers here: Saving path in String (4 answers) Closed 5 years ago. I'm ... JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Jun 23, 2022 in Education by JackTerrance
0 votes
    I need to remove a highly referenced table in a SQL Server database. How can I get a list of all the ... of the management studio.) Select the correct answer from above options...
asked Jan 28, 2022 in Education by JackTerrance
0 votes
    In the transfer of file between server and client, if the transmission rates along the path is 10Mbps, 20Mbps, 30Mbps, ... ___________. A. 20Mbps B. 10Mbps C. 40Mbps D. 50Mbps...
asked Jan 8, 2023 in Technology by JackTerrance
0 votes
    I want to display an path in Fabric.JS, in svg file: And code in my Fabricjs var Path_0_1 = new ... , JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked May 4, 2022 in Education by JackTerrance
0 votes
    Given a string file path such as /foo/fizzbuzz.bar, how would I use bash to extract just the ... JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Mar 17, 2022 in Education by JackTerrance
0 votes
    How do you get the File System watcher to watch a path selected at run time e.g. the user can ... , JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Jan 15, 2022 in Education by JackTerrance
...