-
-
Notifications
You must be signed in to change notification settings - Fork 74
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: Add missing TF backends #766
Conversation
case "gcs": | ||
gcsConfig := &cdktf.GcsBackendConfig{} | ||
// serialize the backend config | ||
err := json.Unmarshal(jsonMap, gcsConfig) | ||
if err != nil { | ||
return err | ||
} | ||
cdktf.NewGcsBackend(stack, gcsConfig) | ||
err = configureTfBackend(stack, config, cdktf.NewGcsBackend) | ||
case "s3": | ||
s3Config := &cdktf.S3BackendConfig{} | ||
// serialize the backend config | ||
err := json.Unmarshal(jsonMap, s3Config) | ||
if err != nil { | ||
return err | ||
} | ||
cdktf.NewS3Backend(stack, s3Config) | ||
err = configureTfBackend(stack, config, cdktf.NewS3Backend) | ||
case "azurerm": | ||
err = configureTfBackend(stack, config, cdktf.NewAzurermBackend) | ||
case "http": | ||
err = configureTfBackend(stack, config, cdktf.NewHttpBackend) | ||
case "remote": | ||
err = configureTfBackend(stack, config, cdktf.NewRemoteBackend) | ||
case "local": | ||
err = configureTfBackend(stack, config, cdktf.NewLocalBackend) | ||
case "consul": | ||
err = configureTfBackend(stack, config, cdktf.NewConsulBackend) | ||
case "cos": | ||
err = configureTfBackend(stack, config, cdktf.NewCosBackend) | ||
case "oss": | ||
err = configureTfBackend(stack, config, cdktf.NewOssBackend) | ||
case "pg": | ||
err = configureTfBackend(stack, config, cdktf.NewPgBackend) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
tried including these in a generic map, but it was a non-starter so have just made it a switch instead.
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #766 +/- ##
=======================================
Coverage 48.75% 48.75%
=======================================
Files 28 28
Lines 3546 3546
=======================================
Hits 1729 1729
Misses 1698 1698
Partials 119 119
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
🎉 This PR is included in version 1.21.0 🎉 The release is available on GitHub release Your semantic-release bot 📦🚀 |
Adds all missing valid TF backends for configuration except for kubernetes (couldn't locate constructor for it in cdktf.