Skip to content

Commit 7ff725e

Browse files
committed
- Changed SANs values for better clarity on which value belongs to which SAN.
1 parent d51a7ec commit 7ff725e

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

examples/get_cert_service_tpp.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,11 +47,11 @@ def main():
4747
# Set the request to use a service generated CSR
4848
request.csr_origin = CSR_ORIGIN_SERVICE
4949
# Include some Subject Alternative Names
50-
request.san_dns = ["www.client.venafi.example.com", "ww1.client.venafi.example.com"]
51-
request.email_addresses = ["e1@venafi.example.com", "e2@venafi.example.com"]
50+
request.san_dns = ["www.dns.venafi.example.com", "ww1.dns.venafi.example.com"]
51+
request.email_addresses = ["email1@venafi.example.com", "email2@venafi.example.com"]
5252
request.ip_addresses = ["127.0.0.1", "192.168.1.1"]
53-
request.uniform_resource_identifiers = ["http://wgtest.com","https://ragnartest.com"]
54-
request.user_principal_names = ["e1@venafi.example.com", "e2@venafi.example.com"]
53+
request.uniform_resource_identifiers = ["http://wgtest.uri.com","https://ragnartest.uri.com"]
54+
request.user_principal_names = ["upn1@venafi.example.com", "upn2@venafi.example.com"]
5555
# Specify ordering certificates in chain. Root can be CHAIN_OPTION_FIRST ("first")
5656
# or CHAIN_OPTION_LAST ("last"). By default it is CHAIN_OPTION_LAST.
5757
# You can also specify CHAIN_OPTION_IGNORE ("ignore") to ignore chain (supported only for TPP).

0 commit comments

Comments
 (0)