A Terraform module for creating and managing projects in Google Cloud Platform (GCP).
This module supports Terraform version 1 and is compatible with the Terraform Google Provider version 4. and 5._**
This module is part of our Infrastructure as Code (IaC) framework that enables our users and customers to easily deploy and manage reusable, secure, and production-grade cloud infrastructure.
- Module Features
- Getting Started
- Module Argument Reference
- Module Outputs
- External Documentation
- Module Versioning
- About Mineiros
- Reporting Issues
- Contributing
- Makefile Targets
- License
A Terraform base module for creating a google_project
resources. Which allows creation and management of a Google Cloud Platform project.
Most basic usage just setting required arguments:
module "terraform-google-project" {
source = "github.com/mineiros-io/terraform-google-project.git?ref=v0.4.0"
name = "My Project"
project_id = "your-project-id"
org_id = "1234567"
}
See variables.tf and examples/ for details and use-cases.
-
project_id
: (Requiredstring
)The project ID. Changing this forces a new project to be created. Note: The project ID is a unique string used to differentiate your project from all others in Google Cloud.
-
name
: (Optionalstring
)The display name of the project.
Default is
var.project
. -
iam
: (Optionallist(iam)
)A list of IAM access to apply to the created secret.
Example:
iam = [ { role = "roles/viewer" members = ["user:[email protected]"] }, { roles = [ "roles/editor", "roles/owner", ] members = ["user:[email protected]"] } ]
Each
iam
object in the list accepts the following attributes:-
role
: (Optionalstring
)The role that members will be assigned to. Note that custom roles must be of the format
[projects|organizations]/{parent-name}/roles/{role-name}
. At least one ofrole
orroles
needs to be set. Each role can only exist once within all elements of the list. Each role can only exist once within all elements of the list unless it specifies a different condition. -
roles
: (Optionalset(string)
)A set roles that members will be assigned to. Note that custom roles must be of the format
[projects|organizations]/{parent-name}/roles/{role-name}
. At least one ofrole
orroles
needs to be set. Each role can only exist once within all elements of the list unless it specifies a different condition. -
members
: (Optionalset(string)
)Identities that will be granted the privilege in role. Each entry can have one of the following values:
allUsers
: A special identifier that represents anyone who is on the internet; with or without a Google account.allAuthenticatedUsers
: A special identifier that represents anyone who is authenticated with a Google account or a service account.user:{emailid}
: An email address that represents a specific Google account. For example,[email protected]
or[email protected]
.serviceAccount:{emailid}
: An email address that represents a service account. For example,[email protected]
.group:{emailid}
: An email address that represents a Google group. For example,[email protected]
.domain:{domain}
: A G Suite domain (primary, instead of alias) name that represents all the users of that domain. For example,google.com
orexample.com
.computed:{identifier}
: An existing key fromvar.computed_members_map
.
Default is
[]
. -
authoritative
: (Optionalbool
)Whether to exclusively set (authoritative mode) or add (non-authoritative/additive mode) members to the role.
Default is
true
.
-
-
org_id
: (Optionalstring
)The numeric ID of the organization this project belongs to. Changing this forces a new project to be created. Only one of
org_id
orfolder_id
may be specified. If theorg_id
is specified then the project is created at the top level. Changing this forces the project to be migrated to the newly specified organization. -
folder_id
: (Optionalstring
)The numeric ID of the folder this project should be created under. Only one of
org_id
orfolder_id
may be specified. If thefolder_id
is specified, then the project is created under the specified folder. Changing this forces the project to be migrated to the newly specified folder. -
billing_account
: (Optionalstring
)The alphanumeric ID of the billing account this project belongs to. The user or service account performing this operation with Terraform must have at minimum Billing Account User privileges (roles/billing.user) on the billing account.
-
skip_delete
: (Optionalbool
)If set to
true
, the Terraform resource can be deleted without deleting the Project via the Google API.Default is
false
. -
labels
: (Optionalmap(string)
)A set of key/value label pairs to assign to the project.
Default is
{}
. -
auto_create_network
: (Optionalbool
)Create the
default
network automatically. If kept asfalse
, the default network will be deleted. Note that, for quota purposes, you will still need to have 1 network slot available to create the project successfully, even if you setauto_create_network
tofalse
, since the network will exist momentarily.It is recommended to use the
constraints/compute.skipDefaultNetworkCreation
constraint to remove the default network instead of settingauto_create_network
tofalse
.Default is
false
. -
computed_members_map
: (Optionalmap(string)
)A map of members to replace in
members
of various IAM settings to handle terraform computed values.Default is
{}
.
-
module_enabled
: (Optionalbool
)Specifies whether resources in the module will be created.
Default is
true
. -
module_depends_on
: (Optionallist(dependency)
)A list of dependencies. Any object can be assigned to this list to define a hidden external dependency.
Example:
module_depends_on = [ google_network.network ]
The following attributes are exported in the outputs of the module:
-
google_project
: (object(google_project)
)All outputs of the created
google_project
resource. -
iam
: (list(iam)
)The resources created by
mineiros-io/project-iam/google
module.
This Module follows the principles of Semantic Versioning (SemVer).
Given a version number MAJOR.MINOR.PATCH
, we increment the:
MAJOR
version when we make incompatible changes,MINOR
version when we add functionality in a backwards compatible manner, andPATCH
version when we make backwards compatible bug fixes.
- Backwards compatibility in versions
0.0.z
is not guaranteed whenz
is increased. (Initial development) - Backwards compatibility in versions
0.y.z
is not guaranteed wheny
is increased. (Pre-release)
Mineiros is a remote-first company headquartered in Berlin, Germany that solves development, automation and security challenges in cloud infrastructure.
Our vision is to massively reduce time and overhead for teams to manage and deploy production-grade and secure cloud infrastructure.
We offer commercial support for all of our modules and encourage you to reach out if you have any questions or need help. Feel free to email us at [email protected] or join our Community Slack channel.
We use GitHub Issues to track community reported issues and missing features.
Contributions are always encouraged and welcome! For the process of accepting changes, we use Pull Requests. If you'd like more information, please see our Contribution Guidelines.
This repository comes with a handy Makefile.
Run make help
to see details on each available target.
This module is licensed under the Apache License Version 2.0, January 2004. Please see LICENSE for full details.
Copyright © 2020-2022 Mineiros GmbH