Skip to content

Commit

Permalink
Merge pull request #16 from BrownUniversity/2023_update
Browse files Browse the repository at this point in the history
Chore run pre-commit hooks
  • Loading branch information
digicosmos86 authored Jun 14, 2023
2 parents 83eb4a9 + 38881c1 commit ca1acc6
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 7 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ code by adding a `module` configuration and setting its `source` parameter to UR

| Name | Version |
|------|---------|
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.2.5 |
| <a name="requirement_google"></a> [google](#requirement\_google) | >= 4.2.9, <5.0.0 |
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.5.0 |
| <a name="requirement_google"></a> [google](#requirement\_google) | >= 4.69.0, <5.0.0 |

## Providers

Expand All @@ -48,8 +48,8 @@ No providers.

| Name | Source | Version |
|------|--------|---------|
| <a name="module_project"></a> [project](#module\_project) | terraform-google-modules/project-factory/google | = 13.0.0 |
| <a name="module_projects_iam_bindings"></a> [projects\_iam\_bindings](#module\_projects\_iam\_bindings) | terraform-google-modules/iam/google//modules/projects_iam | ~> 7.2 |
| <a name="module_project"></a> [project](#module\_project) | terraform-google-modules/project-factory/google | = 14.2.0 |
| <a name="module_projects_iam_bindings"></a> [projects\_iam\_bindings](#module\_projects\_iam\_bindings) | terraform-google-modules/iam/google//modules/projects_iam | 7.6.0 |

## Resources

Expand Down
15 changes: 12 additions & 3 deletions examples/simple-project/variables.tf
Original file line number Diff line number Diff line change
@@ -1,13 +1,22 @@


variable "activate_apis" {
type = list(string)
default = [
"compute.googleapis.com",
"cloudresourcemanager.googleapis.com"
]
}

# This are secrets. They are passsed in terraform.tfvars file
variable "billing_account" {}
variable "org_id" {}
variable "folder_id" {}
variable "billing_account" {
type = string
}

variable "org_id" {
type = string
}

variable "folder_id" {
type = string
}
3 changes: 3 additions & 0 deletions examples/simple-project/versions.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
terraform {
required_version = ">= 1.5.0"
}

0 comments on commit ca1acc6

Please sign in to comment.