Skip to content

Commit

Permalink
TF and azurerm version update
Browse files Browse the repository at this point in the history
  • Loading branch information
canderson1 committed Jul 25, 2024
1 parent c265c9c commit 43bb89d
Show file tree
Hide file tree
Showing 9 changed files with 89 additions and 88 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- name: Download vertag
uses: robinraju/[email protected]
with:
repository: gofrontier-com/vertag
repository: frontierhq/vertag
latest: true
fileName: vertag_Linux_x86_64.tar.gz
token: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -40,4 +40,4 @@ jobs:
--author-name "Build bot" \
--author-email "[email protected]" \
--modules-dir "modules" \
--remote-url "https://${BUILD_BOT_PAT}:[email protected]/gofrontier-com/azurerm-terraform-modules"
--remote-url "https://${BUILD_BOT_PAT}:[email protected]/frontierhq/azurerm-terraform-modules"
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ repos:
- id: detect-private-key
- id: trailing-whitespace
- id: end-of-file-fixer
- repo: https://github.com/gofrontier-com/pre-commit-hooks
- repo: https://github.com/frontierhq/pre-commit-hooks
rev: v0.0.1
hooks:
- id: pipenv-verify
Expand Down
2 changes: 1 addition & 1 deletion .tfswitchrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.5.5
1.9.3
138 changes: 69 additions & 69 deletions README.rst

Large diffs are not rendered by default.

18 changes: 9 additions & 9 deletions README.rst.j2
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{#- README.rst -#}

.. image:: https://github.com/gofrontier-com/azurerm-terraform-modules/actions/workflows/ci.yml/badge.svg
:target: https://github.com/gofrontier-com/azurerm-terraform-modules/actions/workflows/ci.yml
.. image:: https://github.com/frontierhq/azurerm-terraform-modules/actions/workflows/ci.yml/badge.svg
:target: https://github.com/frontierhq/azurerm-terraform-modules/actions/workflows/ci.yml

=========================
azurerm-terraform-modules
Expand All @@ -28,22 +28,22 @@ Usage
-----

This repository maintains independent `semver <https://semver.org/>`_ versioning for each module,
and produces module-specific `releases <https://github.com/gofrontier-com/azurerm-terraform-modules/releases>`_.
and produces module-specific `releases <https://github.com/frontierhq/azurerm-terraform-modules/releases>`_.
This approach enables modules to be consumed independently of one another, and without the need for
Terraform to clone the entire repository.

To use a module, add a `module block <https://www.terraform.io/docs/language/modules/syntax.html>`_
and specify the source as a `module archive <https://developer.hashicorp.com/terraform/language/modules/sources#fetching-archives-over-http>`_
URL. The URL should be in the format:

``https://github.com/gofrontier-com/azurerm-terraform-modules/releases/download/[module-name]/[version]/module.tar.gz//src``
``https://github.com/frontierhq/azurerm-terraform-modules/releases/download/[module-name]/[version]/module.tar.gz//src``

For example:

.. code:: hcl

module "resource_group" {
source = "https://github.com/gofrontier-com/azurerm-terraform-modules/releases/download/resource-group/1.0.0/module.tar.gz//src"
source = "https://github.com/frontierhq/azurerm-terraform-modules/releases/download/resource-group/1.0.0/module.tar.gz//src"

environment = "dev"
identifier = "k8s"
Expand All @@ -69,13 +69,13 @@ Modules
- Latest version
- Source URL
{%- for module in modules %}
* - `{{ module.name }} <https://github.com/gofrontier-com/azurerm-terraform-modules/tree/main/modules/{{ module.name }}>`__
- `{{ module.version }} <https://github.com/gofrontier-com/azurerm-terraform-modules/releases/tag/{{ module.name }}%2F{{ module.version }}>`__
- ``https://github.com/gofrontier-com/azurerm-terraform-modules/releases/download/{{ module.name }}/{{ module.version }}/module.tar.gz//src``
* - `{{ module.name }} <https://github.com/frontierhq/azurerm-terraform-modules/tree/main/modules/{{ module.name }}>`__
- `{{ module.version }} <https://github.com/frontierhq/azurerm-terraform-modules/releases/tag/{{ module.name }}%2F{{ module.version }}>`__
- ``https://github.com/frontierhq/azurerm-terraform-modules/releases/download/{{ module.name }}/{{ module.version }}/module.tar.gz//src``
{%- endfor %}

------------
Contributing
------------

We welcome contributions to this repository. Please see `CONTRIBUTING.md <https://github.com/gofrontier-com/azurerm-terraform-modules/tree/main/CONTRIBUTING.md>`_ for more information.
We welcome contributions to this repository. Please see `CONTRIBUTING.md <https://github.com/frontierhq/azurerm-terraform-modules/tree/main/CONTRIBUTING.md>`_ for more information.
1 change: 1 addition & 0 deletions modules/automation-account/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
# Changelog
TF and azurerm version update to 1.9.3 and 3.113 respectively
4 changes: 2 additions & 2 deletions modules/automation-account/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ This module creates an [Automation Account](https://registry.terraform.io/provid

```hcl
module "automation_account" {
source = "https://github.com/gofrontier-com/azurerm-terraform-modules/releases/download/automation-account/[VERSION]/module.tar.gz//src"
source = "https://github.com/frontierhq/azurerm-terraform-modules/releases/download/automation-account/[VERSION]/module.tar.gz//src"
environment = "con"
identifier = "main"
Expand All @@ -28,4 +28,4 @@ _None._

## Contributing

See <https://github.com/gofrontier-com/azurerm-terraform-modules/blob/main/README.rst#contributing>.
See <https://github.com/frontierhq/azurerm-terraform-modules/blob/main/README.rst#contributing>.
4 changes: 2 additions & 2 deletions modules/automation-account/src/terraform.tf
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
terraform {
required_version = "~> 1.5"
required_version = "~> 1.9"

required_providers {
azurerm = {
source = "hashicorp/azurerm"
version = "~> 3.85"
version = "~> 3.113"
}
}
}
4 changes: 2 additions & 2 deletions modules/automation-account/test/terraform.tf
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
terraform {
required_version = "~> 1.5"
required_version = "~> 1.9"

required_providers {
azurerm = {
source = "hashicorp/azurerm"
version = "~> 3.85"
version = "~> 3.113"
}
}
}

0 comments on commit 43bb89d

Please sign in to comment.