-
Notifications
You must be signed in to change notification settings - Fork 66
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* update module to terraform 0.14 * update CI to terraform 0.14 / golang 1.14 (using custom test Docker image) * update Azure pipeline
- Loading branch information
1 parent
b2c1abc
commit 56a3d8d
Showing
20 changed files
with
133 additions
and
86 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,7 @@ | |
**/.terraform/* | ||
terraform.tfstate.d/ | ||
logs/ | ||
.terraform.lock.hcl | ||
|
||
# Variable files | ||
terraform.tfvars | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,12 @@ | ||
terraform { | ||
required_providers { | ||
azurerm = { | ||
source = "hashicorp/azurerm" | ||
version = ">= 2.0" | ||
} | ||
} | ||
} | ||
|
||
provider "azurerm" { | ||
features {} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,43 +1,43 @@ | ||
variable azure_devops_org_name { | ||
variable "azure_devops_org_name" { | ||
type = string | ||
description = "The name of the Azure DevOps organization in which the containerized agents will be deployed (e.g. https://dev.azure.com/YOUR_ORGANIZATION_NAME, must exist)" | ||
} | ||
|
||
variable azure_devops_pool_name { | ||
variable "azure_devops_pool_name" { | ||
type = string | ||
description = "The name of the Azure DevOps agent pool in which the containerized agents will be deployed (must exist)" | ||
} | ||
|
||
variable azure_devops_personal_access_token { | ||
variable "azure_devops_personal_access_token" { | ||
type = string | ||
description = "The personal access token to use to connect to Azure DevOps (see https://docs.microsoft.com/en-us/azure/devops/pipelines/agents/v2-windows?view=azure-devops#permissions)" | ||
} | ||
|
||
variable location { | ||
variable "location" { | ||
type = string | ||
description = "The Azure location to use" | ||
default = "westeurope" | ||
} | ||
|
||
variable agent_docker_image { | ||
variable "agent_docker_image" { | ||
type = string | ||
description = "The Docker image to use for the Linux agent" | ||
default = "jcorioland/aci-devops-agent" | ||
} | ||
|
||
variable agent_docker_tag { | ||
variable "agent_docker_tag" { | ||
type = string | ||
description = "The Docker tag to use for the Linux agent" | ||
default = "0.2-linux" | ||
} | ||
|
||
variable agents_count { | ||
variable "agents_count" { | ||
type = number | ||
description = "The number of agents to create" | ||
default = 2 | ||
} | ||
|
||
variable random_suffix { | ||
variable "random_suffix" { | ||
type = number | ||
description = "A random suffix for resources generated during the test" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,12 @@ | ||
terraform { | ||
required_providers { | ||
azurerm = { | ||
source = "hashicorp/azurerm" | ||
version = ">= 2.0" | ||
} | ||
} | ||
} | ||
|
||
provider "azurerm" { | ||
features {} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,58 +1,58 @@ | ||
variable azure_devops_org_name { | ||
variable "azure_devops_org_name" { | ||
type = string | ||
description = "The name of the Azure DevOps organization in which the containerized agents will be deployed (e.g. https://dev.azure.com/YOUR_ORGANIZATION_NAME, must exist)" | ||
} | ||
|
||
variable azure_devops_pool_name { | ||
variable "azure_devops_pool_name" { | ||
type = string | ||
description = "The name of the Azure DevOps agent pool in which the containerized agents will be deployed (must exist)" | ||
} | ||
|
||
variable azure_devops_personal_access_token { | ||
variable "azure_devops_personal_access_token" { | ||
type = string | ||
description = "The personal access token to use to connect to Azure DevOps (see https://docs.microsoft.com/en-us/azure/devops/pipelines/agents/v2-windows?view=azure-devops#permissions)" | ||
} | ||
|
||
variable location { | ||
variable "location" { | ||
type = string | ||
description = "The Azure location to use" | ||
default = "westeurope" | ||
} | ||
|
||
variable agent_docker_image { | ||
variable "agent_docker_image" { | ||
type = string | ||
description = "The Docker image to use for the Linux agent" | ||
default = "jcorioland/aci-devops-agent" | ||
} | ||
|
||
variable agent_docker_tag { | ||
variable "agent_docker_tag" { | ||
type = string | ||
description = "The Docker tag to use for the Linux agent" | ||
default = "0.2-linux" | ||
} | ||
|
||
variable agents_count { | ||
variable "agents_count" { | ||
type = number | ||
description = "The number of agents to create" | ||
default = 2 | ||
} | ||
|
||
variable random_suffix { | ||
variable "random_suffix" { | ||
type = number | ||
description = "A random suffix for resources generated during the test" | ||
} | ||
|
||
variable docker_registry_url { | ||
variable "docker_registry_url" { | ||
type = string | ||
description = "The server URL of the Docker private registry" | ||
} | ||
|
||
variable docker_registry_username { | ||
variable "docker_registry_username" { | ||
type = string | ||
description = "The username of the Docker private registry" | ||
} | ||
|
||
variable docker_registry_password { | ||
variable "docker_registry_password" { | ||
type = string | ||
description = "The password of the Docker private registry" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,12 @@ | ||
terraform { | ||
required_providers { | ||
azurerm = { | ||
source = "hashicorp/azurerm" | ||
version = ">= 2.0" | ||
} | ||
} | ||
} | ||
|
||
provider "azurerm" { | ||
features {} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,43 +1,43 @@ | ||
variable azure_devops_org_name { | ||
variable "azure_devops_org_name" { | ||
type = string | ||
description = "The name of the Azure DevOps organization in which the containerized agents will be deployed (e.g. https://dev.azure.com/YOUR_ORGANIZATION_NAME, must exist)" | ||
} | ||
|
||
variable azure_devops_pool_name { | ||
variable "azure_devops_pool_name" { | ||
type = string | ||
description = "The name of the Azure DevOps agent pool in which the containerized agents will be deployed (must exist)" | ||
} | ||
|
||
variable azure_devops_personal_access_token { | ||
variable "azure_devops_personal_access_token" { | ||
type = string | ||
description = "The personal access token to use to connect to Azure DevOps (see https://docs.microsoft.com/en-us/azure/devops/pipelines/agents/v2-windows?view=azure-devops#permissions)" | ||
} | ||
|
||
variable location { | ||
variable "location" { | ||
type = string | ||
description = "The Azure location to use" | ||
default = "westus" | ||
} | ||
|
||
variable agent_docker_image { | ||
variable "agent_docker_image" { | ||
type = string | ||
description = "The Docker image to use for the Linux agent" | ||
default = "jcorioland/aci-devops-agent" | ||
} | ||
|
||
variable agent_docker_tag { | ||
variable "agent_docker_tag" { | ||
type = string | ||
description = "The Docker tag to use for the Linux agent" | ||
default = "0.2-linux" | ||
} | ||
|
||
variable agents_count { | ||
variable "agents_count" { | ||
type = number | ||
description = "The number of agents to create" | ||
default = 2 | ||
} | ||
|
||
variable random_suffix { | ||
variable "random_suffix" { | ||
type = number | ||
description = "A random suffix for resources generated during the test" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,12 @@ | ||
terraform { | ||
required_providers { | ||
azurerm = { | ||
source = "hashicorp/azurerm" | ||
version = ">= 2.0" | ||
} | ||
} | ||
} | ||
|
||
provider "azurerm" { | ||
features {} | ||
} |
Oops, something went wrong.