proxy: adds support for fastly provider

This commit is contained in:
Iain Learmonth 2022-06-23 15:49:09 +01:00
parent 13f42b2869
commit 3d0fe913e9
2 changed files with 105 additions and 130 deletions

View file

@ -28,6 +28,7 @@ from app.terraform.list.gitlab import ListGitlabAutomation
from app.terraform.list.s3 import ListS3Automation
from app.terraform.proxy.azure_cdn import ProxyAzureCdnAutomation
from app.terraform.proxy.cloudfront import ProxyCloudfrontAutomation
from app.terraform.proxy.fastly import ProxyFastlyAutomation
jobs = {
x.short_name: x
@ -50,7 +51,8 @@ jobs = {
ListGitlabAutomation,
ListS3Automation,
ProxyAzureCdnAutomation,
ProxyCloudfrontAutomation
ProxyCloudfrontAutomation,
ProxyFastlyAutomation
]
}