I need to retrieve data of an existing or not Network and if it's not then it should be created i need to integrate this script in CI/CD pipeline
this is my code
data "openstack_networking_network_v2" "existed_network" {
name = "Network-name"
}
resource "openstack_networking_network_v2" "edums_network" {
count = data.openstack_networking_network_v2.existed_network.[*].id == "" ? 1:0
name = "Network-name"
}
i end up with this error when the network is not created Error: Your query returned no results. Please change your search criteria and try again.
This is a well-known issue (discussed for instance in Data sources should allow empty results without failing #16380, Terraform Data with No Results or here: Terraform check if resource exists before creating it).
In Terraform, data sources are used to retrieve details about external resources, which are not managed by Terraform itself. Essentially, data sources act as a link between the existing infrastructure and the intended configuration, facilitating a more adaptive and context-aware approach to provisioning.
Terraform does not support empty data sources:
(from https://discuss.hashicorp.com/t/terraform-data-with-no-results/47228/2)
Conditional Creation of Objects
Terraform recommends to use variables.Quotes from Conditional Creation of Objects:
Solution
For this case (creating a network in OpenStack only if it does not already exist) there are two possible approaches, either using a variable or with
import
.With a variable
Define the variable in
terraform.tfvars
:or pass it as a command-line argument:
With `import`
openstack_networking_network_v2
supportsimport
using the existing network's id (see Terraform Openstack provider documentation for networking_network_v2)With an
import
block:Again, the network ID must exist; otherwise, Terraform will generate an error message.