terraform-provider-logicmonitor icon indicating copy to clipboard operation
terraform-provider-logicmonitor copied to clipboard

website auth block is required when require_auth = false

Open AntonSynchrofazatron opened this issue 7 months ago • 0 comments

Please fix issue when require_auth = false this part is definitely a garbage...

        auth = [{
          password = ""
          type = "basic"
          domain = ""
          user_name = ""
        }]

if it is removed, code is not able to be executed saying that auth block is required.... Inappropriate value for attribute "steps": element 0: attribute "auth" is required. so i keep it and next when code is applied terraform plan always asks for changes like

~ auth                = [
                  + {
                      + domain    = ""
                      + password  = ""
                      + type      = "basic"
                      + user_name = ""
                    },

AntonSynchrofazatron avatar Jul 17 '24 11:07 AntonSynchrofazatron