Skip to content
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

Merged
merged 3 commits into from
Mar 28, 2025
Merged

feat: Add missing TF backends #766

merged 3 commits into from
Mar 28, 2025

Conversation

tjholm
Copy link
Member

@tjholm tjholm commented Mar 27, 2025

Adds all missing valid TF backends for configuration except for kubernetes (couldn't locate constructor for it in cdktf.

Comment on lines 276 to +295
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)
Copy link
Member Author

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.

Copy link

codecov bot commented Mar 27, 2025

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 48.75%. Comparing base (b60875a) to head (678d9b3).
Report is 3 commits behind head on main.

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           
Flag Coverage Δ
aws 44.89% <ø> (ø)
azure 53.29% <ø> (ø)
core 60.76% <ø> (ø)
gcp 47.14% <ø> (ø)

Flags with carried forward coverage won't be shown. Click here to find out more.

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

@tjholm tjholm merged commit da75556 into main Mar 28, 2025
4 checks passed
@tjholm tjholm deleted the feat/add-az-tf-backend branch March 28, 2025 02:08
@nitric-bot
Copy link

🎉 This PR is included in version 1.21.0 🎉

The release is available on GitHub release

Your semantic-release bot 📦🚀

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants