| applyTo |
|---|
** |
AGENT MUST HALT EXECUTION IF TODO NOT FOLLOWED
| Parameters: | |
| Environment: | |
| Type: String | |
| Default: dev | |
| Description: Environment name, e.g. dev, test, prod | |
| Conditions: | |
| IsProd: !Equals [!Ref Environment, "prod"] | |
| Resources: |
I'm playing around a lot nowadays with Terraform 0.13 and I found a really interesting feature and that's the ... symbol (also called an ellipsis) to be used with for expressions.
The operator can be used for group_by operations.
We have a list of entries. The list contains employee/manager/project triplets.
| Windows Registry Editor Version 5.00 | |
| [HKEY_LOCAL_MACHINE\SOFTWARE\DownloadCenter] | |
| [HKEY_LOCAL_MACHINE\SOFTWARE\DownloadCenter\Sub] | |
| "Google Chrome (R) a faster way to browse the web"="9223372036854775807" | |
| "Google Drive"="9223372036854775807" | |
| "Google Toolbar for Internet Explorer"="9223372036854775807" | |
| "Norton Internet Security(NIS)"="9223372036854775807" |
| from .common import * # noqa | |
| DEBUG = True | |
| INSTALLED_APPS += ('django_extensions',) | |
| # Snip all the other stuff |
| #!/bin/bash | |
| # Usage | |
| # $ ./install-cert-macos.sh "/path/to/cert" | |
| CERT_PATH="$1" | |
| # First, grab the SHA-1 from the provided SSL cert. | |
| CERT_SHA1=$(openssl x509 -in "$CERT_PATH" -sha1 -noout -fingerprint | cut -d "=" -f2 | sed "s/://g") | |
| # Next, grab the SHA-1s of any standard.dev certs in the keychain. | |
| # Don't return an error code if nothing is found. |