feat: abstracting cloud providers
This commit is contained in:
parent
af36a545a1
commit
0a72aeed96
18 changed files with 629 additions and 181 deletions
|
@ -3,6 +3,7 @@ import subprocess # nosec
|
|||
from abc import abstractmethod
|
||||
from typing import Any, Optional, Tuple
|
||||
|
||||
from app.models.cloud import CloudProvider
|
||||
from app.terraform import BaseAutomation
|
||||
|
||||
|
||||
|
@ -22,7 +23,7 @@ class TerraformAutomation(BaseAutomation):
|
|||
Default parallelism for remote API calls.
|
||||
"""
|
||||
|
||||
provider: str
|
||||
provider: CloudProvider
|
||||
"""
|
||||
Short name for the provider used by this module.
|
||||
"""
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue