Intune – New unified certificate connector for Intune
As you may know you can use Intune to provide user or device certificate capabilities like:
As you know, Amazon Certificate Manager (ACM) is used to help managing certificates, from the creation to the renewal process.
Well, ACM can now be used by CloudFormation to automate SSL/TLS certificate management for DNS-validated certificates with domain managed by Amazon Route 53.
With this improvement you no longer need to manually validate your request.
To start using this new capability, you create a new CloudFormation template using the below sample
{
“Type” : “AWS::CertificateManager::Certificate”,
“Properties” : {
“CertificateAuthorityArn” : String,
“CertificateTransparencyLoggingPreference” : String,
“DomainName” : String,
“DomainValidationOptions” : [ DomainValidationOption, … ],
“SubjectAlternativeNames” : [ String, … ],
“Tags” : [ Tag, … ],
“ValidationMethod” : String
}
}
Where
Below is a sample of JSON file to create the new template
“mycertificate” : {
“Type” : “AWS::CertificateManager::Certificate”,
“Properties” : {
“DomainName” : “mydomain.com”,
“DomainValidationOptions” : [{
“DomainName” : “mydomain.com”,
“ValidationDomain” : “mydomain.com”
}],
“ValidationMethod” : “dns”
}
}
As you may know you can use Intune to provide user or device certificate capabilities like:
As you know, certificates are more heavily used and important than ever to protect communication between clients and services.
Whilst I know that many people have been looking forward to a Azure Networking certification for some time, this doesn’t mean it comes easy! There is...