Skip to content

Commit 2732f83

Browse files
committed
seo changes
1 parent 2378605 commit 2732f83

File tree

1 file changed

+2
-2
lines changed
  • content/well-architected-framework/docs/docs/define-and-automate-processes/deploy/zero-downtime-deployments

1 file changed

+2
-2
lines changed

content/well-architected-framework/docs/docs/define-and-automate-processes/deploy/zero-downtime-deployments/infrastructure.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: Learn how to implement blue green deployment strategies for zero-do
55

66
# Deploy blue green infrastructure
77

8-
Infrastructure changes like server or network policy updates can cause costly downtime if not managed correctly. Blue green deployment strategies lower this risk by maintaining two identical production environments, allowing you to test changes thoroughly before switching traffic. This guide explains what blue green infrastructure is and explains how Terraform can help you implement it.
8+
Infrastructure changes like server or network policy updates can cause costly downtime if not managed correctly. Blue green deployment strategies lower this risk by maintaining two identical production environments, allowing you to test changes before switching traffic. This guide explains what blue green infrastructure is and how Terraform can help you implement it.
99

1010
## What is blue green infrastructure
1111

@@ -22,7 +22,7 @@ deploy your green infrastructure environment when you want to deploy your new so
2222

2323
## Using Terraform for blue green deployments
2424

25-
HashiCorp's Terraform is an infrastructure as code tool that can help you deploy and manage blue green infrastructure environments. By using Terraform modules, you can consistently deploy identical infrastructure using the same code but in different environments through variables. You can also define feature toggles in your Terraform code to create a blue and green deployment environment simultaneously. You can then test your application in your new green environment, and then, when you are ready, set the toggle in your code to destroy your blue environment.
25+
HashiCorp's Terraform is an infrastructure as code tool that can help you deploy and manage blue green infrastructure environments. By using Terraform modules, you can consistently deploy identical infrastructure using the same code but in different environments through variables. You can also define feature toggles in your Terraform code to create a blue and green deployment environment simultaneously. You can then test your application in your new green environment, and then, when you are ready, set the toggle in your code to destroy your blue environment.
2626

2727
HashiCorp resources:
2828

0 commit comments

Comments
 (0)