Skip to content

Commit

Permalink
Merge pull request #53 from bschaatsbergen/add-versions-tf
Browse files Browse the repository at this point in the history
Add `versions.tf`
  • Loading branch information
bschaatsbergen authored Jan 6, 2023
2 parents f766d87 + 8c10717 commit 60328eb
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,10 @@ You can check the status of the certificate in the Google Cloud Console.
<!-- BEGINNING OF PRE-COMMIT-TERRAFORM DOCS HOOK -->
## Requirements

No requirements.
| Name | Version |
|------|---------|
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.2.0 |
| <a name="requirement_google"></a> [google](#requirement\_google) | >=4.47.0 |

## Providers

Expand Down
10 changes: 10 additions & 0 deletions versions.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
terraform {
required_version = ">= 1.2.0"

required_providers {
google = {
source = "hashicorp/google"
version = ">=4.47.0"
}
}
}

0 comments on commit 60328eb

Please sign in to comment.