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

Multiple CAA records with the same name but different tags and values not possible #375

Open
Stefan-van-Hattum opened this issue Jan 29, 2024 · 0 comments

Comments

@Stefan-van-Hattum
Copy link

Stefan-van-Hattum commented Jan 29, 2024

It is not possible to create multiple CAA records with the same name but with different tags or values, while this is possible to do so within the Infoblox WebGUI.
Here is an example code:

def create_ca_rec(domain, type, value):
obj, created = objects.CaaRecord.create_check_exists(connector=connection,
view='Internet',
name=domain,
ca_flag=0,
ca_tag=type,
ca_value=value)
create_ca_rec("example.com", "issue", "digicert.com")
create_ca_rec("example.com", "issue", "sectigo.com")
create_ca_rec("example.com", "iodef", "[email protected]")

the first one gets created but the rest fails and it results in "Infoblox record:caa already exists"

While a TXT record is possible to create multiple records with the same name but different values. So it would be nice if the same would also be possible for CAA records.

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

No branches or pull requests

1 participant