jdamata / terraform-provider-sonarqube

Terraform provider for managing Sonarqube configuration
GNU General Public License v3.0
62 stars 51 forks source link

Add datasource groups and qualitygate #167

Closed estebangit closed 1 year ago

estebangit commented 1 year ago

Hi, thank you for the job you do on this great provider!

I have a use case where I need a datasource for “sonarqube_group” and “sonarqube_qualitygate”.

Affected Resource(s)

data “sonarqube_group” “my_global_group” {
    name = “MyGroup”
}

data “sonarqube_qualitygate” “my_custom_gate” {
    name = “MyGate”
}

How can I contribute?

Regards, Esteban

jdamata commented 1 year ago

Sounds good to me. Did you want to work on this? An example of a data source would be https://github.com/jdamata/terraform-provider-sonarqube/blob/master/sonarqube/data_source_sonarqube_user.go