Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.51 KB

File metadata and controls

29 lines (20 loc) · 1.51 KB

Frequently Asked Questions

Why am I encountering a low quota with projects created via Terraform Example Foundation?

When you deploy the Terraform Example Foundation with the Service Account created in step 0-bootstrap, the project quota will be based on the reputation of your service account rather than your user identity. In many cases, this quota is initially low.

We recommend that your request 50 additional projects for the service account, terraform_service_account, created in step 0-bootstrap. You can use the Request Project Quota Increase form to request the quota increase. In the support form, for Email addresses that will be used to create projects, use the terraform_service_account address that's created in the organization bootstrap module. If you see other quota errors, see the Quota documentation.

What is a "named" branch?

Certain branches in the terraform-example-foundation are considered to be named branches. Pushing to a named branch causes the apply command to be run. Pushing to branches other than the named branches does not run apply.

  • development
  • nonproduction
  • production

Which Terraform commands are run when I push to a branch?

If you pushed to a named branch the following commands are run: init, plan, validate, apply.

If you push to a branch that is not a named branch, only init, plan, and validate are run. The apply command is not run.