Skip to content

Commit

Permalink
fix chap05
Browse files Browse the repository at this point in the history
  • Loading branch information
mikaelkrief committed Aug 22, 2023
1 parent 406a8be commit 5917f87
Show file tree
Hide file tree
Showing 14 changed files with 259 additions and 25 deletions.
22 changes: 22 additions & 0 deletions CHAP05/import-block/.terraform.lock.hcl

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

22 changes: 22 additions & 0 deletions CHAP05/import-generated/.terraform.lock.hcl

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

22 changes: 22 additions & 0 deletions CHAP05/import/.terraform.lock.hcl

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

22 changes: 22 additions & 0 deletions CHAP05/localstate/.terraform.lock.hcl

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

41 changes: 41 additions & 0 deletions CHAP05/managestate/.terraform.lock.hcl

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions CHAP05/managestate/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ terraform {
source = "hashicorp/azurerm"
version = "~> 3.20"
}
random = {
source = "hashicorp/random"
version = "3.5.1"
}
}
}

Expand Down
11 changes: 6 additions & 5 deletions CHAP05/managestate/variables.tf
Original file line number Diff line number Diff line change
@@ -1,32 +1,33 @@
variable "resource_group_name" {
description = "Resource group name"
type = string
}

variable "location" {
description = "Location of Azure reource"
default = "westeurope"
type = string
}

variable "service_plan_name" {
description = "Service plan name"
type = string
}

variable "app_name" {
description = "Name of application"
default = "MyAppState"
type = string
}

variable "environment" {
description = "Environment Name"
type = string
}


variable "custom_app_settings" {
description = "Custom App settings"
default = {}
}

variable "createdby" {
description = "name of the triggers user"
default = "NA"
type = string
}
22 changes: 22 additions & 0 deletions CHAP05/refactor/cli/.terraform.lock.hcl

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

22 changes: 22 additions & 0 deletions CHAP05/refactor/moved/.terraform.lock.hcl

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

22 changes: 22 additions & 0 deletions CHAP05/remote-backend/.terraform.lock.hcl

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

22 changes: 22 additions & 0 deletions CHAP05/remote-state/.terraform.lock.hcl

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

19 changes: 4 additions & 15 deletions CHAP05/remote-state/variables.tf
Original file line number Diff line number Diff line change
@@ -1,32 +1,21 @@
variable "resource_group_name" {
description = "Resource group name"
type = string
}

variable "location" {
description = "Location of Azure reource"
default = "westeurope"
}

variable "service_plan_name" {
description = "Service plan name"
type = string
}

variable "app_name" {
description = "Name of application"
default = "MyApp"
type = string
}

variable "environment" {
description = "Environment Name"
}


variable "custom_app_settings" {
description = "Custom App settings"
default = {}
}

variable "createdby" {
description = "name of the triggers user"
default = "NA"
type = string
}
22 changes: 22 additions & 0 deletions CHAP05/sync/.terraform.lock.hcl

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 6 additions & 5 deletions CHAP05/sync/variables.tf
Original file line number Diff line number Diff line change
@@ -1,32 +1,33 @@
variable "resource_group_name" {
description = "Resource group name"
type = string
}

variable "location" {
description = "Location of Azure reource"
default = "westeurope"
type = string
}

variable "service_plan_name" {
description = "Service plan name"
type = string
}

variable "app_name" {
description = "Name of application"
default = "MyAppStateSync"
type = string
}

variable "environment" {
description = "Environment Name"
type = string
}


variable "custom_app_settings" {
description = "Custom App settings"
default = {}
}

variable "createdby" {
description = "name of the triggers user"
default = "NA"
type = string
}

0 comments on commit 5917f87

Please sign in to comment.