Git Product home page Git Product logo

azure-functions-docker-and-terraform's Introduction

page type languages products/technologies
sample
java
hcl
azure-functions
azure-pipelines
docker

Azure Functions Docker and Terraform

These samples showcase the following:

  • How to use Terraform to provision and deploy Azure Functions based on either docker image or running from a package.
  • How to create a docker image to run a Java Azure Function. The assets include:
    • DockerFile: The docker file where the Maven build is done and the artifacts are moved to a final usable Azure Function v3 image.
    • docker-compose: a wrapper for the DockerFile to help ease running the docker file.
    • Azure Pipeline Config: An Azure DevOps pipeline yaml configuration file that runs the docker file to create the docker image, and then extract the test results from the image and expose them to the pipeline, as well as push the image to a registry.

Contents

File/folder Description
Sample-Java-Azure-Function Sample Java Azure Function, DockerFile, docker-compose, and Azure pipeline files.
Terraform Sample Terraform code.
.gitignore Define what to ignore at commit time.
CHANGELOG.md List of changes to the sample.
CONTRIBUTING.md Guidelines for contributing to the sample.
README.md This README file.
LICENSE The license for the sample.

Running The Sample

Azure Functions Terraform Module

This Terraform module simplifies provisioning Azure Functions based on either docker image or running from a package.

Prerequisites

Before using this Terraform model,

Characteristics

Usage

Function-App usage example:

module "function_app" {
  source = "<root directory>/function-app"
  fn_name_prefix = var.function_name_prefix
  service_plan_name                 = var.service_plan_name
  resource_group_name  = var.resource_group_name
  storage_account_name              = var.storage_account_name
  docker_registry_server_username   = var.docker_username
  docker_registry_server_password   = var.docker_password
  app_insights_instrumentation_key  = var.app_insights_instrumentation_key
  fn_app_config                     = {
                                        var.first_function_name: {
                                          image : var.function_image,
                                          zip : null,
                                          hash: null
                                        },
                                        var.second_function_name: {
                                            image : null,
                                            zip : var.function_package_location,
                                            hash : var.function_package_sha
                                        }
                                      }
}

Running the module

1. Clone the repo

Clone the repo to your local machine and navigate to Terraform directory.

2. Configuring input variables

Using any of the options in Terraform documentation, you can configure the following variables:

  • Configuring fn_app_prefix

    Each function app created will be in the format fn_app_prefix-function_app_name.

  • Configuring docker_registry_server_username and docker_registry_server_pasword

    The username and password for the docker registry in order to be able to pull the images to deploy the function apps.

  • Configuring fn_app_config

    This is a map where the key is the function_app_name and the value is an object that contains the definition of what's being deployed. It has one of two possible structures:

    • For Docker based deployment, the object has one field:
      • image: which refers to the docker image name to deploy.
    • For running from a package, it should contains the fields:
      • zip: contains an http reference to the package.

        This will enable your function app to run from a package by adding a WEBSITE_RUN_FROM_PACKAGE setting to your function app settings.

      • hash: contains a hash of the zip file for downloads integrity check.

    3. Apply the module

    In a terminal window, run the following commands:

    cd terraform/function-app

    terraform init

    terraform apply

Dockerizing The Function

Prerequisites

Before using this DockerFile,

Inside the Sample-Java-Azure-Function directory you'll find:

  • a sample java azure function.
  • a DockerFile that builds a Java project inside a docker image and provides a runnable Azure Function image.
  • a Docker-Compose file.
  • a sample Azure Pipeline yaml file.

Usage

Using DockerFile:

In order to use the sample docker file provided, you will need to:

  • In "docker-compose.yml" file, replace <image-name> with your docker image name.

  • Use the env_sample file to create your own .env with values to REGISTRY and STORAGE_CONNECTION_STRING.

  • In "Dockerfile" file, replace <function-app-name> with your function app name.

  • In a terminal window, run the following commands:

    cd Sample-Java-Azure-Function

    docker-compose up

  • Use Postman, Curl, or any web browser to test the sample function on port 9010.

    ex. http://localhost:9010/api/HttpExample?name=abc

Azure DevOps Pipeline

Prerequisites

Before using this,

Usage

  1. Create a new repo with the attached pipeline file a long with Docker file and the Azure Function project in Sample-Java-Azure-Function directory.
  2. In "azure-pipeline.yml" file, replace <image-name> with your image name.
  3. In Azure DevOps, create and set the following variables:
    • SERVICE_CONNECTION_NAME
    • STORAGE_CONNECTION_STRING
  4. Use Azure devops to create a new pipeline with the Azure pipeline yaml configuration.
  5. Run the pipeline.

Contributing

This project welcomes contributions and suggestions. Most contributions require you to agree to a Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us the rights to use your contribution. For details, visit https://cla.opensource.microsoft.com.

When you submit a pull request, a CLA bot will automatically determine whether you need to provide a CLA and decorate the PR appropriately (e.g., status check, comment). Simply follow the instructions provided by the bot. You will only need to do this once across all repos using our CLA.

This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact [email protected] with any additional questions or comments.

azure-functions-docker-and-terraform's People

Contributors

microsoft-github-operations[bot] avatar microsoftopensource avatar nzthiago avatar sarah-aly avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.