This repository has been archived by the owner on Oct 31, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 97
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: update docs regarding @env:AC_PASSWORD
- Loading branch information
1 parent
8312cdd
commit 1764e98
Showing
4 changed files
with
12 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -148,7 +148,6 @@ bundle_id = "com.mitchellh.example.terraform" | |
apple_id { | ||
username = "[email protected]" | ||
password = "@env:AC_PASSWORD" | ||
provider = "UL304B4VGY" | ||
} | ||
|
@@ -172,7 +171,6 @@ zip { | |
"bundle_id" : "com.mitchellh.example.terraform", | ||
"apple_id": { | ||
"username" : "[email protected]", | ||
"password": "@env:AC_PASSWORD", | ||
"provider": "UL304B4VGY" | ||
}, | ||
"sign" :{ | ||
|
@@ -207,14 +205,9 @@ Supported configurations: | |
* `username` (`string`) - The Apple ID username, typically an email address. | ||
This will default to the `AC_USERNAME` environment variable if not set. | ||
|
||
* `password` (`string`) - The password for the associated Apple ID. This can be | ||
specified directly or using `@keychain:<name>` or `@env:<name>` to avoid | ||
putting the plaintext password directly in a configuration file. The `@keychain:<name>` | ||
syntax will load the password from the macOS Keychain with the given name. | ||
The `@env:<name>` syntax will load the password from the named environmental | ||
variable. If this value isn't set, we'll attempt to use the `AC_PASSWORD` | ||
environment variable as a default. | ||
|
||
* `password` (`string`) - The password for the associated Apple ID. | ||
This will default to the `AC_PASSWORD` environment variable if not set. | ||
|
||
**NOTE**: If you have 2FA enabled, the password must be an application password, not | ||
your normal apple id password. See [Troubleshooting](#troubleshooting) for details. | ||
|
||
|
@@ -298,7 +291,6 @@ notarize { | |
apple_id { | ||
username = "[email protected]" | ||
password = "@env:AC_PASSWORD" | ||
} | ||
``` | ||
|
||
|
@@ -312,7 +304,6 @@ apple_id { | |
|
||
"apple_id": { | ||
"username": "[email protected]", | ||
"password": "@env:AC_PASSWORD" | ||
} | ||
} | ||
``` | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters