Add Git files
This commit is contained in:
Родитель
79d5969380
Коммит
e91bcc93e9
|
@ -0,0 +1,16 @@
|
|||
# Copyright (c) Microsoft Corporation.
|
||||
# Licensed under the MIT License.
|
||||
# Set the default behavior, in case people don't have core.autocrlf set.
|
||||
* text=auto
|
||||
|
||||
# Explicitly declare text files you want to always be normalized and converted
|
||||
# to native line endings on checkout.
|
||||
*.tf text
|
||||
*.sh text eol=lf
|
||||
|
||||
# Declare files that will always have CRLF line endings on checkout.
|
||||
# *.sln text eol=crlf
|
||||
|
||||
# Denote all files that are truly binary and should not be modified.
|
||||
*.png binary
|
||||
*.jpg binary
|
|
@ -3,6 +3,24 @@
|
|||
##
|
||||
## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
|
||||
|
||||
# Terraform artifacts
|
||||
*.terraform
|
||||
*.tfstate
|
||||
*.tfstate.*
|
||||
terraform-provider-azurerm_v*
|
||||
terraform-provider-random_v*
|
||||
*.terraform.lock.hcl
|
||||
|
||||
# Terraform logs
|
||||
crash.log
|
||||
|
||||
# Include tfplan files to ignore the plan output of command: terraform plan -out=tfplan
|
||||
# example: *tfplan*
|
||||
*plan*
|
||||
!terraform-plan.yml
|
||||
!src/bicep/**
|
||||
*.plan*
|
||||
|
||||
# User-specific files
|
||||
*.rsuser
|
||||
*.suo
|
||||
|
|
|
@ -0,0 +1,17 @@
|
|||
variables:
|
||||
###########################################################################################################################
|
||||
################################################## Common Variables #######################################################
|
||||
###########################################################################################################################
|
||||
|
||||
######################################
|
||||
# Agent settings
|
||||
######################################
|
||||
|
||||
vmImage: 'ubuntu-latest' # Use this for Microsoft-hosted agents
|
||||
poolName: '' # Use this for self-hosted agents
|
||||
|
||||
######################################
|
||||
# Validation deployment settings
|
||||
######################################
|
||||
|
||||
location: 'EastUS' # The default location to test deploy resources to
|
Загрузка…
Ссылка в новой задаче