Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: kabisa/terraform-datadog-kafka
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 0.0.3
Choose a base ref
...
head repository: kabisa/terraform-datadog-kafka
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: main
Choose a head ref
  • 17 commits
  • 44 files changed
  • 2 contributors

Commits on Sep 19, 2021

  1. added tf pre-commit

    obeleh committed Sep 19, 2021
    Copy the full SHA
    403a1ec View commit details

Commits on Sep 20, 2021

  1. docs

    obeleh committed Sep 20, 2021
    Copy the full SHA
    4e1ed3d View commit details
  2. docs

    obeleh committed Sep 20, 2021
    Copy the full SHA
    9c14b3d View commit details

Commits on Sep 22, 2021

  1. Merge pull request #3 from kabisa/tf-docs

    added tf pre-commit
    obeleh authored Sep 22, 2021
    Copy the full SHA
    b9ca69a View commit details
  2. updating generic monitor

    obeleh committed Sep 22, 2021
    Copy the full SHA
    bc98dc0 View commit details
  3. Merge pull request #4 from kabisa/update-monitors

    updating generic monitor
    obeleh authored Sep 22, 2021
    Copy the full SHA
    c3c1504 View commit details

Commits on Jan 29, 2022

  1. Create LICENSE

    obeleh authored Jan 29, 2022
    Copy the full SHA
    21c3f45 View commit details

Commits on Jan 31, 2022

  1. Merge pull request #5 from kabisa/add-license-1

    Create LICENSE
    obeleh authored Jan 31, 2022
    Copy the full SHA
    93c6ec1 View commit details

Commits on May 30, 2022

  1. upgrading to tf provider 3

    obeleh committed May 30, 2022
    Copy the full SHA
    effc8ce View commit details
  2. updated docs

    obeleh committed May 30, 2022
    Copy the full SHA
    af29ae0 View commit details
  3. Merge pull request #6 from kabisa/update-monitors

    Update monitors to terraform version 3
    obeleh authored May 30, 2022
    Copy the full SHA
    ad5dfcd View commit details

Commits on Jul 22, 2022

  1. Add renovate.json

    renovate[bot] authored Jul 22, 2022
    Copy the full SHA
    a6c1f82 View commit details
  2. upgrading modules and docs

    obeleh committed Jul 22, 2022
    Copy the full SHA
    6f5bc49 View commit details
  3. ignore example lock

    obeleh committed Jul 22, 2022
    Copy the full SHA
    4650958 View commit details
  4. added example lock file back

    obeleh committed Jul 22, 2022
    Copy the full SHA
    059a5e4 View commit details
  5. fixing lock files

    obeleh committed Jul 22, 2022
    Copy the full SHA
    5915ab7 View commit details
  6. Merge pull request #7 from kabisa/renovate/configure

    Configure Renovate
    obeleh authored Jul 22, 2022
    Copy the full SHA
    8034c06 View commit details
Showing with 921 additions and 275 deletions.
  1. +29 −0 .github/workflows/documentation.yaml
  2. +1 −0 .gitignore
  3. +13 −0 .pre-commit-config.yaml
  4. +25 −0 .terraform.lock.hcl
  5. +21 −0 LICENSE
  6. +577 −17 README.md
  7. +2 −7 bytesin-high-variables.tf
  8. +7 −4 bytesin-high.tf
  9. +2 −7 bytesout_high-variables.tf
  10. +7 −4 bytesout_high.tf
  11. +9 −0 examples/example.tf
  12. +2 −7 fetch_purgatory_size-variables.tf
  13. +7 −4 fetch_purgatory_size.tf
  14. +2 −7 in_sync_nodes_dropped-variables.tf
  15. +9 −6 in_sync_nodes_dropped.tf
  16. +3 −8 leader_election_occurring-variables.tf
  17. +9 −6 leader_election_occurring.tf
  18. +14 −14 main.tf
  19. +1 −0 module_description.md
  20. +3 −8 multiple_active_controllers-variables.tf
  21. +9 −6 multiple_active_controllers.tf
  22. +3 −8 no_active_controllers-variables.tf
  23. +9 −6 no_active_controllers.tf
  24. +3 −8 offline_partitions-variables.tf
  25. +9 −6 offline_partitions.tf
  26. +3 −8 produce_purgatory_size-variables.tf
  27. +13 −10 produce_purgatory_size.tf
  28. +1 −1 provider.tf
  29. +6 −0 renovate.json
  30. +3 −8 unclean_leader_election-variables.tf
  31. +9 −6 unclean_leader_election.tf
  32. +3 −8 under_replicated_partitions-variables.tf
  33. +9 −6 under_replicated_partitions.tf
  34. +3 −8 unusual_consumer_fetch_time-variables.tf
  35. +13 −10 unusual_consumer_fetch_time.tf
  36. +3 −8 unusual_fetch_failures-variables.tf
  37. +13 −10 unusual_fetch_failures.tf
  38. +3 −8 unusual_follower_fetch_time-variables.tf
  39. +13 −10 unusual_follower_fetch_time.tf
  40. +3 −8 unusual_produce_failures-variables.tf
  41. +13 −10 unusual_produce_failures.tf
  42. +3 −8 unusual_produce_time-variables.tf
  43. +13 −10 unusual_produce_time.tf
  44. +18 −5 variables.tf
29 changes: 29 additions & 0 deletions .github/workflows/documentation.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Generate terraform docs

on:
push:
# don't run when we push a tag
tags-ignore:
- '*'
# don't run when we merge to main
# the action should have run already
branches-ignore:
- 'main'
jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: terraform-linters/setup-tflint@v2
name: Setup TFLint
with:
tflint_version: v0.38.1
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
- uses: pre-commit/action@v3.0.0
# pre-commit fails if it changed files
# we want to go on
continue-on-error: true
- uses: pre-commit/action@v3.0.0
- uses: EndBug/add-and-commit@v9
with:
default_author: github_actions
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -27,3 +27,4 @@ override.tf.json

# Include tfplan files to ignore the plan output of command: terraform plan -out=tfplan
# example: *tfplan*
examples/.terraform.lock.hcl
13 changes: 13 additions & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
repos:
- repo: https://github.com/gruntwork-io/pre-commit
rev: v0.1.12
hooks:
- id: terraform-fmt
- id: terraform-validate
- id: tflint
- repo: https://github.com/kabisa/terraform-datadog-pre-commit-hook
rev: "1.3.6"
hooks:
- id: terraform-datadog-docs
args:
- "."
25 changes: 25 additions & 0 deletions .terraform.lock.hcl

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

21 changes: 21 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2022 Kabisa

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
Loading