gitlab_application_settings > Wrong tfstate for 2 settings
Created by: BornToBeRoot
GitLab Provider version
3.18.0
GitLab version
15.5.1
Terraform version
1.3.3
Relevant Terraform Configuration
resource "gitlab_application_settings" "this" {
npm_package_requests_forwarding = true
pypi_package_requests_forwarding = true
}
Relevant log output
resource "gitlab_application_settings" "this" {
id = "gitlab"
~ npm_package_requests_forwarding = false -> true
~ pypi_package_requests_forwarding = false -> true
# (190 unchanged attributes hidden)
}
Description
TF state is:
"npm_package_requests_forwarding": false, "pypi_package_requests_forwarding": false,
In the Web UI both are checked / enabled....
Even after multiple applys it'S not working. (Btw. for a fresh gitlab instance i have to run the apply at least 2 times...)
Edited by Timo Furrer