Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

switch from group name to group id #53

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open

Conversation

zl0ty
Copy link

@zl0ty zl0ty commented Oct 22, 2024

No description provided.

@zl0ty zl0ty requested a review from a team as a code owner October 22, 2024 12:49
@patoarvizu
Copy link

I'd like to get other maintainers' opinions here, but this doesn't feel right to me because it would break any existing configuration that's using name, since that field would now be computed, and id would be required. A non-breaking approach could be to have a new data source, called something like data_user_group_by_id but that also feels a little bit weird because if we have a _by_id data source, there should be a _by_name data source for consistency.

Overall this doesn't feel to me like this is necessary because if you know the id you can look up the name. I'm flexible on this, but I'm going to review this as "Request changes" anyway until we can get an agreement.

Copy link

@patoarvizu patoarvizu left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Marking as "Request changes" at least until another maintainer chimes in

@sahaqaa
Copy link
Contributor

sahaqaa commented Oct 22, 2024

The main idea behind this change was: initially to find ID of the resources in CloudConnexa UI user needed to open Swagger and it was too much work, so we did data sources to work by name field, as in most cases it was unique value.

After that approx 14 October 2024 we've introduced button in CloudConnexa UI near almost (if not almost) all entities - when user press on icon ID of the resources is getting copied.
image

So now users can get the ID of the resources easily and it kind of makes sense to now require "id" field in data sources as required.

From another side i've checked our code and found out that we are our self is heavily dependent on "name" field in two places:

data "cloudconnexa_network" "this" {
  for_each = local.networks
  name     = each.key
}

data "cloudconnexa_network" "this" { # passed into module
  for_each = var.networks
  name     = each.key
}

If this data source "cloudconnexa_network" were to change to only require ID field that would be inconvenient as we've built data structure that is dependent on:

locals {
networks = {
    azure_test = {
      default_subnet             = "xxx.xxx.xxx/xxx"
      default_subnet_description = "azure-test_full"
      extended_easy_subnets      = {}
      extended_complex_subnets   = {}
      applications = {
        "xxxxx_app_ports" = {
          route         = [{ domain = "XXXXX.local" }]
          service_types = ["HTTP", "HTTPS"]
        custom_service_types = [{ protocol = "ICMP" }] }
		}
      ipservices = {
        "azure-lab_full" = {
          route         = ["xxx.xxx.xxx/xxx"]
          service_types = ["ANY"]
        }
        "azure-prod_full" = {
          route         = ["xxx.xxx.xxx/xxx"]
          service_types = ["ANY"]
        }
        "azure-xxx-xxx" = {
          route         = ["xxx.xxx.xxx/xxx"]
          service_types = ["ANY"]
        }
      }
    }
    aws_lab = {
      default_subnet             = "xxx.xxx.xxx/xxx"
      default_subnet_description = "Labs subnet"
      extended_easy_subnets      = {}
      extended_complex_subnets   = {}
      applications = {
        "xxxxxxx" = {
          description = "xxxxx"
          route       = [{ domain = "XXXXXXXXXXX.local" }]
        custom_service_types = [{ protocol = "TCP", from_port = 8443, to_port = 8443 }] }
      }
      ipservices = {
        "AWS_full" = {
          description   = "AWS ALLOW ALL"
          route         = ["xxx.xxx.xxx/xxx]
          service_types = ["ANY"]
        }
      }
    }
}
}

"azure_test", "aws_lab" are the "keys" in data sources above ^^

From yet another side Terraform provider still in beta and some minor changes even breakable somewhat accepted/expected

@patoarvizu
Copy link

Mmhh I'm kind of rusty on the Terraform provider SDK, but is there a way to make neither field required, and have logic that would enforce that one of the two are present?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants