driftctl/doc/contributing
Elie ff72de8e77
🍾 Initial release
Co-authored-by: William BEUIL <william.beuil@cloudskiff.com>
Co-authored-by: Martin GUIBERT <martin@cloudskiff.com>
2020-12-09 16:35:26 +01:00
..
media 🍾 Initial release 2020-12-09 16:35:26 +01:00
README.md 🍾 Initial release 2020-12-09 16:35:26 +01:00
adding_a_new_resource.md 🍾 Initial release 2020-12-09 16:35:26 +01:00
tests.md 🍾 Initial release 2020-12-09 16:35:26 +01:00

README.md

Developer guide

Core concepts

Driftctl uses Terraform providers besides cloud providers SDK to retrieve data. Resource listing is done using cloud providers SDK, then resource details retrieval is done by calling the terraform provider with gRPC.

Terminology

  • Scanner Scanner is used to scan multiples cloud providers and return a set of resources. It calls every declared Supplier.
  • Remote A remote is a representation of a cloud provider
  • Resource A resource is an abstract representation of a cloud provider resource (e.g. S3 bucket, EC2 instance, etc ...)
  • ResourceSupplier It should exist only one ResourceSupplier per resource. A ResourceSupplier is used to list resources from a given type on a given remote and return a resource list.