Infrastructure turn-key solution for app service workloads
Перейти к файлу
manojvazirani 4923ef62f2
Remove Optional and Required in variables.tf
2019-04-24 12:24:07 -04:00
.github Merge pull request #53 from Microsoft/erisch/features/contrib-guidelines 2019-04-09 16:32:25 -05:00
design-reference/architecture erisch/features/contrib-guidelines 2019-04-09 08:14:49 -05:00
devops/providers Azure Devops CI Build Pipeline (#67) 2019-04-15 09:34:35 -05:00
infra Remove Optional and Required in variables.tf 2019-04-24 12:24:07 -04:00
setup Added logic to test for existing ACR name. 2019-04-03 17:19:47 -05:00
shared Integrate review comments 2019-04-05 13:37:02 -04:00
test Adding docker test base image (#68) 2019-04-16 07:54:17 -05:00
tests Merge pull request #53 from Microsoft/erisch/features/contrib-guidelines 2019-04-09 16:32:25 -05:00
.gitignore Update .gitignore for Mac OS files 2019-04-15 11:55:37 -04:00
LICENSE Initial commit 2019-03-06 06:03:35 -08:00
README.md Azure Devops CI Build Pipeline (#67) 2019-04-15 09:34:35 -05:00

README.md

Build Status

Setup

The artifacts used to deploy this project include bash scripts and Terraform templates. The sections below provide guidance to deploy this project into your Azure environment.

The setup instructions below assume the following requirements:

  • bash v4.0 (or newer)
    • NOTE FOR MAC! The default version of bash installed on Mac is older than 4.0. Be sure to update bash using brew before executing the script. Instructions to update bash can be found here.
  • Terraform v0.11.13 (or newer)

Setup the Azure Container Registry and Service Principals

  1. Open a bash command prompt.

  2. Navigate to the ./setup folder.

  3. Authenticate to Azure.

    az login
    
  4. Run acr-sp-init.sh. For example, the command below will provision an Azure Container Registry (ACR) in East US and configure the two service principals in Azure Active Directory; one with AcrPush permission and another with AcrPull permission scoped to the ACR. The script parameter values are used to construct the name of the resource group, ACR, and service principals.

    $ ./acr-sp-init.sh -a Cblt -l eastus -s CoreProd
    

    Note: The script configures service principals in Azure AD and therefore requires elevated privileges. As such, it is recommended that an interactive user with permissions to configure Azure AD run the script.

Automated Test

The automated test for this setup step is in ./tests/acr-sp-init-test.sh. It can be executed at the command line as shown below, or as part of a CI pipeline. If you don't want the test to cleanup resources, then pass the -n switch.

az login

# Run test and cleanup resources created.
./tests/acr-sp-init-test.sh

Setup Shared / Core Infrastructure

Requirements

  • Azure Subscription User (with deployment rights)
  • Terraform

Resources

The following respources will be deployed

  • Azure Resource Group

Deployment

  1. Authenticate using your Azure Principal or an Azure account with privileges to deploy resource groups.
$ az login
  1. Execute the following commands:
$ cd ./shared
$ terraform init
$ terraform apply

Environmental Variables

To stop the command line from prompting questions use a .env file with the following environmental variables:

export TF_VAR_app_name=cblt
export TF_VAR_org=cse
export TF_VAR_env=dev
export TF_VAR_location=eastus

After saving the file set environment using:

. .env

Alternative use the variable.tf files in the directories and add the default key on the file as shown on the example below:

variable "location" {
    type = "string"
    description = "The name of the target location"
    default = "eastus"
}
variable "env" {
    type = "string"
    description = "The short name of the target env (i.e. dev, staging, or prod)"
    defailt = "dev"
}
variable "org" {
    type = "string"
    description = "The short name of the organization"
    default = "cse"
}
variable "app_name" {
    type = "string"
    description = "The short name of the application"
    default = "cblt"
}

Setup Application Infrastructure

Coming soon!

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.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., label, 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 opencode@microsoft.com with any additional questions or comments.