datadrivers / terraform-provider-nexus

Terraform provider for Sonatype Nexus
https://registry.terraform.io/providers/datadrivers/nexus
Mozilla Public License 2.0
119 stars 53 forks source link

Support for setting IQ Server details #444

Open jackmtpt opened 6 months ago

jackmtpt commented 6 months ago

Is there an existing issue for this?

Community Note

Description

There is currently no resource that allows you to configure the URL/credentials for an IQ Server.

New or Affected Resource(s)/Data Source(s)

nexus_iq_server_connection

Pro feature

Community Plugin

No response

Potential Terraform Configuration

resource "nexus_iq_server_connection" "iq_server" {
  enabled = true
  url = "http://your.iq.server"
  auth_method = "userpass"
  auth {
    username = "user"
    password = "pass"
  }
}

References

No response