-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
significant changes to handling providers/plugins
- removed custom provider/plugin handling - now uses terraform providers mirror command to make cache - generates a .terraform.lock.hcl to minimize outputs - multiple provider versions can exist fine in cache - now /properly/ supports providers not in the hashicorp registry - benefits from checking signing of providers upon initial mirror - fixed provider configuration rendering - scans for required_providers - injects required_providers config if it does not exist in module - only injects provider configuration for used providers - more conversion to types - removed custom aws / helm providers - they previously required custom configuration - tfworker/providers "generic" should work in most cases - moved types from a single file into a package to better organize - started implementing pydantic for some types - added constants for filenames / default TF provider configs - updated tests to reflect complete removal of legacy "plugins"
- Loading branch information
Showing
30 changed files
with
1,440 additions
and
899 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
[settings] | ||
known_third_party = atlassian,boto3,botocore,click,deepdiff,google,hcl2,importlib_metadata,jinja2,mergedeep,moto,pytest,tenacity,yaml | ||
known_third_party = atlassian,boto3,botocore,click,deepdiff,google,hcl2,jinja2,mergedeep,moto,pytest,yaml | ||
profile = black |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "terraform-worker" | ||
version = "0.11.0" | ||
version = "0.12.0" | ||
description = "An orchestration tool for Terraform" | ||
authors = ["Richard Maynard <[email protected]>"] | ||
packages = [ | ||
|
@@ -41,6 +41,7 @@ markupsafe = "^2.1" | |
mergedeep = "^1.3" | ||
setuptools = "^70.0" | ||
atlassian-python-api = "^3.41" | ||
pydantic = "^2.7" | ||
|
||
[tool.poetry.dev-dependencies] | ||
ipython = "^8.24" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.