Brian Flad

Results 422 comments of Brian Flad

Hi @bondsbw 👋 Thank you for submitting this. We'd like to understand a little more about this problem, including Terraform CLI and Terraform AWS Provider version information and preferably with...

Hi, is this still an issue? If there's an issue specifically with Amazon Linux, we might want to ping the maintainers of the `cron` cookbook or the distro maintainers as...

Should only need cacti. Can you copy/paste the error here or gist it please? Thanks.

Are you setting the MySQL server root password not through the `['mysql']['server_root_password']` attribute? We use that attribute directly here: https://github.com/bflad/chef-cacti/blob/master/recipes/database.rb#L18

I haven't seen anything either.

Setting this as a package level constant and using the constant as a reference should avoid the reports: ```go const ( timeToWaitForTask = 30 * time.Second ) ``` I think...

The next version of terraform-plugin-sdk/v2, unreleased at the moment, but slated to be v2.11.0 adds an additional `DiffSuppressOnRefresh` field to `helper/schema.Schema`. When enabled, this checks the `DiffSuppressFunc` during refresh. If...

Currently, Terraform CLI never calls the `PlanResourceChange` RPC during destroy plans, so there is not an opportunity for providers to even "see" the planned resource destroy operation. They are investigating...

Hi @matthewcummings 👋 Thank you for submitting this. Before we discuss any potential implementation details, let's continue the discussion in #609 to determine if and what should be done. The...

It may be possible to return a diagnostic warning using [`schema.Provider.ConfigureContextFunc`](https://pkg.go.dev/github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema#Provider.ConfigureContextFunc), although warnings themselves can cause strange behavior before Terraform CLI version 0.15 releases.