Skip to content

Commit

Permalink
Update providers (#7)
Browse files Browse the repository at this point in the history
  • Loading branch information
snovikov authored Feb 15, 2023
1 parent d12abc8 commit dab8966
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 17 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/release-drafter.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
---
name: Release Drafter

on:
push:
# branches to consider in the event; optional, defaults to all
branches:
- master

permissions:
contents: write
pull-requests: write

jobs:
update_release_draft:
runs-on: ubuntu-latest
Expand Down
12 changes: 4 additions & 8 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ TF_MODULES = $(sort $(dir $(wildcard $(CURRENT_DIR)modules/*/)))
# -------------------------------------------------------------------------------------------------
# Container versions
# -------------------------------------------------------------------------------------------------
TF_VERSION = 0.13.7
TFDOCS_VERSION = 0.15.0-0.29
FL_VERSION = 0.4
TF_VERSION = 1.0.11
TFDOCS_VERSION = 0.16.0-0.31
FL_VERSION = latest-0.8
JL_VERSION = 1.6.0-0.5


Expand Down Expand Up @@ -79,14 +79,10 @@ test: _pull-tf
echo "------------------------------------------------------------"; \
if docker run $$(tty -s && echo "-it" || echo) --rm -v "$(CURRENT_DIR):/t" --workdir "$${DOCKER_PATH}" hashicorp/terraform:$(TF_VERSION) \
init \
-verify-plugins=true \
-lock=false \
-upgrade=true \
-reconfigure \
-input=false \
-get-plugins=true \
-get=true \
.; then \
-get=true; then \
echo "OK"; \
else \
echo "Failed"; \
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ Create ACM certificate with DNS validation and validate using Cloudflare Hosted

| Name | Version |
|------|---------|
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 3 |
| <a name="provider_cloudflare"></a> [cloudflare](#provider\_cloudflare) | >= 3.2, <= 3.32.0 |
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 4 |
| <a name="provider_cloudflare"></a> [cloudflare](#provider\_cloudflare) | >= 3.34 |

<!-- TFDOCS_PROVIDER_END -->

Expand All @@ -27,9 +27,9 @@ Create ACM certificate with DNS validation and validate using Cloudflare Hosted

| Name | Version |
|------|---------|
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 0.12.26 |
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 3 |
| <a name="requirement_cloudflare"></a> [cloudflare](#requirement\_cloudflare) | >= 3.2, <= 3.32.0 |
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.0 |
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 4 |
| <a name="requirement_cloudflare"></a> [cloudflare](#requirement\_cloudflare) | >= 3.34 |

<!-- TFDOCS_REQUIREMENTS_END -->

Expand Down
6 changes: 3 additions & 3 deletions versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ terraform {
required_providers {
cloudflare = {
source = "cloudflare/cloudflare"
version = ">= 3.2, <= 3.32.0"
version = ">= 3.34"
}
aws = {
source = "hashicorp/aws"
version = ">= 3"
version = ">= 4"
}
}
required_version = ">= 0.12.26"
required_version = ">= 1.0"
}

0 comments on commit dab8966

Please sign in to comment.