https://github.com/kralizek/azurekeyvaultletsencrypt
https://github.com/kralizek/azurekeyvaultletsencrypt
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/kralizek/azurekeyvaultletsencrypt
- Owner: Kralizek
- Created: 2024-03-14T12:03:26.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2024-03-14T12:16:24.000Z (about 1 year ago)
- Last Synced: 2025-01-23T11:48:56.323Z (4 months ago)
- Language: HCL
- Size: 6.84 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Let's Encrypt certificates in Azure KeyVault
This repository shows how to generate a certificate using Let's Encrypt and store it in Azure KeyVault. Additionally, it installs ACMEbot for automatic renewal of the certificate.
## Variables
This module has the following variables:
|Name|Type|Required|Description|
|-|-|-|-|
|`subscription_id`|`string`|✔️|The subscription where all resources will be created|
|`location`|`string`||The location where all resources will be created. Defaults to `eastus2`.|
|`email_address`|`string`|✔️|The email address used to interact with Let's Encrypt|
|`parent_zone_name`|`string`|✔️|The name of the DNS zone used as parent for this example.|
|`parent_zone_resource_group_name`|`string`|✔️|The name of the resource group where the parent DNS zone is located.|
|`shared_subscription_id`|`string`||The ID of the subscription where the base DNS zone is located. If omitted, the `subscription_id` value is used.|
|`create_acme_both`|`bool`||Specifies if an instance of the ACMEbot module should be created. Defaults to `false`.|## Credits
This repository uses examples and code from the following sources:
-
-
-
-