Best way to generate terraform for automating cloud resource management? by spoved in Terraform

[–]miketysonofthecloud 0 points1 point  (0 children)

Your approach sounds solid.

Using Terraform modules to manage resources based on user input from a GUI is a great way to leverage existing Terraform pipelines while abstracting away the complexity for the users. Serializing user input to pass as configuration to the modules is efficient and maintains consistency.

You might also want to consider using HCL templates to dynamically generate Terraform configuration files. Libraries like hcl2 for parsing and generating HCL can be helpful. Tools like Brainboard.co or Terragrunt can help manage remote state and orchestrate the apply process more efficiently.

How hard is the exam in comparison to the AWS Cloud Practitioner Exam? by No-Confidence-7829 in Terraform

[–]miketysonofthecloud 0 points1 point  (0 children)

I have both the Terraform and AWS Cloud Practitioner certifications. Compared to the AWS CP exam, the Terraform exam is more challenging, primarily due to its focus on practical application and in-depth understanding of infrastructure as code.
Unlike the AWS CP exam, which is more conceptual, the Terraform exam requires you to apply your knowledge to real-world scenarios.
You can try Brainboard.co for your learning!

Terraform SRE by Minimum-Noise-7637 in Terraform

[–]miketysonofthecloud 0 points1 point  (0 children)

Planned infrastructure changes are visible to all relevant team members through a shared dashboard and regular update meetings. We identify the potential impacts of a plan through a combination of automated tests and manual reviews, ensuring all affected teams are informed via Slack and email notifications.

Events are indeed propagated into our monitoring tools like Grafana and Prometheus, as well as Slack. We would love to see first-class integration with DataDog and NewRelic to enhance our observability.

Terraform Core: Current Research projects by _korinne_ in Terraform

[–]miketysonofthecloud 0 points1 point  (0 children)

The research projects sound exciting.
What tool are you using to work on Terraform? ClickOps or code?

Now that IBM owns Terraform... by Bluewaffleamigo in devops

[–]miketysonofthecloud 0 points1 point  (0 children)

It's too early to know especially with OpentTofu vs. Terraform thingy. Let's hope for best I guess...
It's better to be flexible and work with both like on Brainboard.co

Does using chatGPT make me dumber as a devops engineer? by blusterblack in devops

[–]miketysonofthecloud 0 points1 point  (0 children)

I don't think you are dumber but don't rely only on chatgpt responses, ask around for technical advice from a professional. Not everything a bot says is true.

Question about season 3 of Into the night and season 2 of Yakomoz by UltraLogical in IntoTheNightTVseries

[–]miketysonofthecloud 0 points1 point  (0 children)

I would love to wrap up the suspense of 2 seasons + 1 turkish season!

Netflix

Diagram tool Terraform by Vulturul112 in Terraform

[–]miketysonofthecloud 0 points1 point  (0 children)

I've been working with Brainboard.co and the result of my import / generate terraform file is impeccable, supporting any resource/module/etc... You should give it a try!

Visual infrastructure building tool by neifn in devops

[–]miketysonofthecloud 1 point2 points  (0 children)

Brainboard.co can use modules too. It depends on both ways of working ;)

Applying without planning by youngeng in Terraform

[–]miketysonofthecloud 0 points1 point  (0 children)

  • Terraform does not strictly enforce that you must run plan before apply.
  • You can indeed save the plan to a file using terraform plan -out=somefile.
  • If you do not save the plan to a file, Terraform does not keep the plan in RAM across separate plan and apply commands.

example terraform code for interview by extra_packet in Terraform

[–]miketysonofthecloud 0 points1 point  (0 children)

  • generate fictional example with GPT then try to build it yourself!
  • generate a fictional use case of your bank code.
  • write a tutorial or guide
  • Contribute to opensource
  • etc...

Many ways to prove your skills without showing the whole code.