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

Custom Extensible Attributes #81

Closed
jamesbtate opened this issue Jan 20, 2021 · 2 comments · Fixed by #103, #119, #128 or #139
Closed

Custom Extensible Attributes #81

jamesbtate opened this issue Jan 20, 2021 · 2 comments · Fixed by #103, #119, #128 or #139
Assignees
Labels
enhancement New feature or request

Comments

@jamesbtate
Copy link

Is it possible to use custom extensible attributes with this Terraform provider? My organization uses a couple EAs that are required on manually-created objects and it would be nice to assign values from Terraform, even if they cannot be required.

This is a duplicate of this issue [1] in the archived hashicorp repo but nothing in this one.

hashicorp/terraform-provider-infoblox#39

@somashekhar somashekhar added the enhancement New feature or request label Mar 5, 2021
@AliAllomani
Copy link

I would suggest adding the ability to define custom attributes for the resources

e.g.

resource "infoblox_a_record" "foo1"{
	vm_name="test-name"
	zone="a.com"
	ip_addr=""
	cidr="10.0.0.0/24"
	tenant_id="foo"
        extattrs = {
               "Site" = "Site1"
               "DC" = "DC1"
         }
}

I can start working on a PR for this.

@somashekhar
Copy link
Contributor

Now the feature is available at master branch. Will be available as part of v2.0.0

This was linked to pull requests Jul 26, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants