Skip to content

Commit 7912f59

Browse files
committed
Welcome to Stack Simplify
1 parent 73d202a commit 7912f59

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
lines changed

25-Azure-DevOps-Terraform-Azure-AKS/Git-Repo-Files/terraform-manifests/09-aks-cluster-linux-user-nodepools.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Create Linux Azure AKS Node Pool
2-
/*
2+
33
resource "azurerm_kubernetes_cluster_node_pool" "linux101" {
44
availability_zones = [1, 2, 3]
55
enable_auto_scaling = true
@@ -26,4 +26,4 @@ resource "azurerm_kubernetes_cluster_node_pool" "linux101" {
2626
"app" = "java-apps"
2727
}
2828
}
29-
*/
29+

25-Azure-DevOps-Terraform-Azure-AKS/Git-Repo-Files/terraform-manifests/10-aks-cluster-windows-user-nodepools.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Create Windows Azure AKS Node Pool
2-
/*
2+
33
resource "azurerm_kubernetes_cluster_node_pool" "win101" {
44
availability_zones = [1, 2, 3]
55
enable_auto_scaling = true
@@ -26,4 +26,4 @@ resource "azurerm_kubernetes_cluster_node_pool" "win101" {
2626
"app" = "dotnet-apps"
2727
}
2828
}
29-
*/
29+

25-Azure-DevOps-Terraform-Azure-AKS/README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -223,8 +223,9 @@ variables:
223223

224224

225225
# Stage-1: Validate Stage
226-
## Step-1: Install Latest Terraform (Ideally not needed if we use default Agents)
226+
## Step-1: Install Latest Terraform (0.13.5) (Ideally not needed if we use default Agents)
227227
## Step-2: Validate Terraform Manifests
228+
## Step-3: Publish Artifacts to Pipeline (Pipeline artifacts provide a way to share files between stages in a pipeline or between different pipelines. )
228229

229230
stages:
230231
- stage: Validate
@@ -454,7 +455,8 @@ kubectl cluster-info
454455
kubectl get nodes
455456
```
456457

457-
458+
## References
459+
- [Publish & Download Artifacts in Azure DevOps Pipeline](https://docs.microsoft.com/en-us/azure/devops/pipelines/artifacts/pipeline-artifacts?view=azure-devops&tabs=yaml)
458460

459461

460462

0 commit comments

Comments
 (0)