Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/getporter/azure-plugins
Azure plugins for Porter
https://github.com/getporter/azure-plugins
azure plugin porter
Last synced: 8 days ago
JSON representation
Azure plugins for Porter
- Host: GitHub
- URL: https://github.com/getporter/azure-plugins
- Owner: getporter
- License: apache-2.0
- Created: 2019-10-09T20:20:24.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2024-10-03T16:17:50.000Z (about 2 months ago)
- Last Synced: 2024-10-05T20:47:32.819Z (about 1 month ago)
- Topics: azure, plugin, porter
- Language: Go
- Homepage: https://getporter.og/plugins/azure
- Size: 4.54 MB
- Stars: 5
- Watchers: 8
- Forks: 9
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
- awesome-cnab - azure-plugins - Azure Plugins for Porter by @get_porter (Implementations / Porter)
README
# Azure Plugins for Porter
This is a set of Azure plugins for [Porter](https://github.com/getporter/porter).
[![Build Status](https://dev.azure.com/getporter/porter/_apis/build/status/azure-plugins?branchName=main)](https://dev.azure.com/getporter/porter/_build/latest?definitionId=8&branchName=main)## Install
The plugin is distributed as a single binary, `azure`. The following snippet will clone this repository, build the binary
and install it to **~/.porter/plugins/**.```
go get get.porter.sh/plugin/azure/cmd/azure
cd $(go env GOPATH)/src/get.porter.sh/plugin/azure
make build install
```After installing the plugin, you must modify your porter configuration file and select which plugin you want to use.
## Secrets
Secrets plugins allow Porter to inject secrets into credential or parameter sets. It also stores sensitive data referenced/generated during Porter execution.
For example, if your team has a shared key vault with a database password, you
can use the keyvault plugin to inject it as a credential or parameter when you install a bundle.### Key Vault
The `azure.keyvault` plugin resolves credentials or parameters against secrets in Azure Key Vault. It's also used to store any sensitive data referenced during Porter execution.
1. Open, or create, `~/.porter/config.toml`
1. Add the following lines to activate the Azure keyvault secrets plugin:```toml
default-secrets = "mysecrets"
[[secrets]]
name = "mysecrets"
plugin = "azure.keyvault"
[secrets.config]
vault = "myvault"
```
1. [Create a key vault][keyvault] and set the vault name in the config with name of the vault.
If you want to specify the full url for your vault, use vault-url instead. Note that `vault-url` takes precedence over the `vault` setting.
```toml
[secrets.config]
vault-url = "https://myvault.vault.azure.net"
```### Secret ID
The full secret FQDN can be used to resolve a secret that may not exist in the plugin configured vault. The plugin will attempt to parse a key value provided as a secret identifier and extract the keyvault name, secret name, and secret version from that value. If it is able to parse the key vault as a secret identifier then it will attempt to resolve the secret against that Azure Key Vault. If it is unable to find the parsed secret in the parsed Azure Key Vault then it will attempt to use the full key value as the secret name and attempt to resolve it in the configured Azure Key Vault.An example CredentialSet that would resolve to both the configured Azure Key Vault as well as a separate Azure Key Vault based on the secret ID would look like this:
```yaml
name: example-credset
schemaVersion: 1.0.1
credentials:
- name: example-configured-secret
source:
secret: my-secret
- name: example-secret-id
source:
secret: https://my-vault.vault.azure.net/secrets/my-secret/secret-version1234
```The version can be included or omitted in the secret ID. If the version is omitted then the latest version is fetched out.
This provides `porter` with the ability to fetch secrets out of multiple Azure Key Vaults without having the change the default vault configuration.
### Authentication
Authentication to Azure can use any of the following methods. Whichever mechanism is used, the principal that is used to access key vault needs to be granted at least [Get and List secret permissions][keyvaultacl] on the vault. However, if you authenticate using the Azure CLI and are logged in with the account that created the key vault in the portal then you will already have this permission.
1. **[Azure CLI][azurecli]**. - By default if the machine you are using is already logged in with the Azure CLI then the same security context will be used for the `azure.keyvault` plugin without any additional configuration.
1. **Use a service principal ([azure portal][sp] ) and an application secret ([azure portal][secret] or [azure cli][passwordcli])**. - Use the service principal details to set the environment variables `AZURE_TENANT_ID` and `AZURE_CLIENT_ID`. Then set the environment variable `AZURE_CLIENT_SECRET`using the application secret .
1. **Use a service principal ([azure portal][sp]) and a certificate ([azure portal][certificate] or [azure cli][certcli])**. - Use the service principal details to set the environment variables `AZURE_TENANT_ID` and `AZURE_CLIENT_ID`. Then using the certificate file path and password set the environment variables `AZURE_CERTIFICATE_PATH` and `AZURE_CERTIFICATE_PASSWORD`.
1. **Username and Password** - Log in with user name and password. Set the environment variables `AZURE_USERNAME` and `AZURE_PASSWORD`. This doesn't work with Microsoft accounts or accounts that have two-factor authentication enabled.
[account]: https://docs.microsoft.com/en-us/azure/storage/common/storage-quickstart-create-account?tabs=azure-portal
[keyvault]: https://docs.microsoft.com/en-us/azure/key-vault/quick-create-portal#create-a-vault
[sp]: https://docs.microsoft.com/en-us/azure/active-directory/develop/howto-create-service-principal-portal
[keyvaultacl]: https://docs.microsoft.com/en-us/azure/key-vault/secrets/about-secrets#secret-access-control
[azurecli]: https://docs.microsoft.com/en-us/cli/azure/reference-index?view=azure-cli-latest#az-login
[secret]: https://docs.microsoft.com/en-us/azure/active-directory/develop/howto-create-service-principal-portal#create-a-new-application-secret
[certificate]: https://docs.microsoft.com/en-us/azure/active-directory/develop/howto-create-service-principal-portal#upload-a-certificate
[passwordcli]:https://docs.microsoft.com/en-us/cli/azure/create-an-azure-service-principal-azure-cli?view=azure-cli-latest#password-based-authentication
[certcli]:https://docs.microsoft.com/en-us/cli/azure/create-an-azure-service-principal-azure-cli?view=azure-cli-latest#certificate-based-authentication