This commit is contained in:
John Spinella 2023-01-05 16:20:08 -05:00
Родитель 79d5969380
Коммит e91bcc93e9
3 изменённых файлов: 52 добавлений и 1 удалений

16
.gitattributes поставляемый Normal file
Просмотреть файл

@ -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

20
.gitignore поставляемый
Просмотреть файл

@ -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
@ -387,4 +405,4 @@ FodyWeavers.xsd
*.sln.iml
# MacOS
.DS_Store
.DS_Store

17
settings.yml Normal file
Просмотреть файл

@ -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