Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

CloudFormation solution in Google Cloud

Tags:

Is there any similar solution like CloudFormation template on Google Cloud? I mean like if the creation drops an error then rollback every transaction, I can define the cluster in a template file and so on...

like image 248
user3296520 Avatar asked Jul 24 '14 07:07

user3296520


People also ask

What is CloudFormation in GCP?

Google Cloud Deployment Manager allows you to specify all the resources needed for your application in a declarative format using yaml. AWS CloudFormation and Google Cloud Deployment Manager can be categorized as "Infrastructure Build" tools.

Does GCP have CloudFormation equivalent?

Deployment Manager is Google's equivalent of CloudFormation, and there's always third-party options such as Terraform.

What is CloudFormation used for?

Q: What is AWS CloudFormation? AWS CloudFormation is a service that gives developers and businesses an easy way to create a collection of related AWS and third-party resources, and provision and manage them in an orderly and predictable fashion.

What is the equivalent of CloudFormation in Azure?

AWS has “Amazon Cloud Formation”, Azure has “Azure Resource Manager”, and for the Google Cloud there is “Deployment Manager”. They all provide a way to define your cloud infrastructure resources using a declarative language, which you can then put in a git repository, for example.


1 Answers

Google Deployment Manager (which recently came out of beta) allows you to define and manage the infrastructure in Google Cloud - i.e. define repeatable deployments via YAML configurations.

See docs for more details about supported resources and syntax.

like image 120
Radek Simko Avatar answered Nov 16 '22 11:11

Radek Simko