Remove unused import, arguments
This commit is contained in:
parent
e72ac8882e
commit
7f2c78ba97
1 changed files with 6 additions and 6 deletions
|
@ -1,4 +1,4 @@
|
||||||
from typing import List, Dict, Set, Any
|
from typing import List, Dict, Any
|
||||||
from .common import Validateable, CredentialMappingDefault
|
from .common import Validateable, CredentialMappingDefault
|
||||||
|
|
||||||
class TerraformBackendGit(Validateable, CredentialMappingDefault):
|
class TerraformBackendGit(Validateable, CredentialMappingDefault):
|
||||||
|
@ -29,11 +29,11 @@ class TerraformBackendGit(Validateable, CredentialMappingDefault):
|
||||||
# See: https://developer.hashicorp.com/terraform/language/settings/backends/configuration#command-line-key-value-pairs
|
# See: https://developer.hashicorp.com/terraform/language/settings/backends/configuration#command-line-key-value-pairs
|
||||||
# and https://github.com/plumber-cd/terraform-backend-git?tab=readme-ov-file#standalone-terraform-http-backend-mode
|
# and https://github.com/plumber-cd/terraform-backend-git?tab=readme-ov-file#standalone-terraform-http-backend-mode
|
||||||
def backend_config(self) -> Dict[str, Any]:
|
def backend_config(self) -> Dict[str, Any]:
|
||||||
return {
|
return {
|
||||||
"address": self.__make_http_backend_address__(self.git_backend_repo, self.git_backend_ref, self.git_backend_state),
|
"address": self.__make_http_backend_address__(),
|
||||||
"lock_address": self.__make_http_backend_address__(self.git_backend_repo, self.git_backend_ref, self.git_backend_state),
|
"lock_address": self.__make_http_backend_address__(),
|
||||||
"unlock_address": self.__make_http_backend_address__(self.git_backend_repo, self.git_backend_ref, self.git_backend_state),
|
"unlock_address": self.__make_http_backend_address__(),
|
||||||
}
|
}
|
||||||
|
|
||||||
def resources_from_package(self) -> List[str]:
|
def resources_from_package(self) -> List[str]:
|
||||||
return {"tf_backend_git_backend.tf", "tf_backend_git_backend_vars.tf"}
|
return {"tf_backend_git_backend.tf", "tf_backend_git_backend_vars.tf"}
|
||||||
|
|
Loading…
Reference in a new issue