DEV Community

Discussion on: Use Terraform Cloud for your pet projects

Collapse
 
xaviermignot profile image
Xavier Mignot

Thanks for your comment 🙏

Yes you can use both GitHub actions and Terraform together as they don't have the same role:

  • Terraform will help to automate the creation of your resources in GCP, there is a provider that you can use to create you Cloud Functions and Firebase resources
  • Once your resources have been created in GCP by Terraform, you can use GitHub actions to deploy your code there

What I've shown in this article is about creating the infrastructure/the resources, it's like an empty shell, actual code still need to be deploy there 😉