Skip to content

Commit

Permalink
updated
Browse files Browse the repository at this point in the history
  • Loading branch information
imrannayer committed Jun 21, 2021
1 parent 7b46bce commit fb1c31f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions AWS/Labs/09-backend/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ provider "aws" {

terraform {
backend "s3" {
bucket = "mybackend99"
key = "hr/app1/network/terraform.tfstate"
bucket = "<MY_BUCKET_NAME>"
key = "hr/network/terraform.tfstate"
region = "us-east-1"
}
}
Expand Down
2 changes: 1 addition & 1 deletion Azure/Labs/09-backend/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ terraform {
resource_group_name = "mybackendrg99"
storage_account_name = "mybackendsa99"
container_name = "mybackend99"
key = "hr.app1.network.terraform.tfstate"
key = "hr.network.terraform.tfstate"
}
}
resource "azurerm_resource_group" "rg" {
Expand Down
6 changes: 3 additions & 3 deletions GCP/Labs/09-backend/main.tf
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
provider "google" {
# credentials = "${file("account.json")}"
# project = "my-project-id"
# region = "us-central1"
region = "us-central1"
}
# Change name of bucket and Create it in your account
terraform {
backend "gcs" {
bucket = "mybackend99"
prefix = "hr/app1/network"
bucket = "<MY_BUCKET_NAME>"
prefix = "hr/network"
}
}
resource "google_compute_network" "vpc_network" {
Expand Down

0 comments on commit fb1c31f

Please sign in to comment.