-
-
Notifications
You must be signed in to change notification settings - Fork 358
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Marina Limeira
committed
Aug 11, 2023
1 parent
d3ece4a
commit 3c7d065
Showing
3 changed files
with
79 additions
and
2 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
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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# See https://github.com/gruntwork-io/terraform-aws-ci/blob/main/modules/sign-binary-helpers/ | ||
# for further instructions on how to sign the binary + submitting for notarization. | ||
|
||
source = ["./bin/cloud-nuke_darwin_amd64"] | ||
|
||
bundle_id = "io.gruntwork.app.terragrunt" | ||
|
||
apple_id { | ||
username = "machine.apple@gruntwork.io" | ||
password = "@env:MACOS_AC_PASSWORD" | ||
} | ||
|
||
sign { | ||
application_identity = "Developer ID Application: Gruntwork, Inc." | ||
} | ||
|
||
zip { | ||
output_path = "cloud-nuke_darwin_amd64.zip" | ||
} |
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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# See https://github.com/gruntwork-io/terraform-aws-ci/blob/main/modules/sign-binary-helpers/ | ||
# for further instructions on how to sign the binary + submitting for notarization. | ||
|
||
source = ["./bin/cloud-nuke_darwin_arm64"] | ||
|
||
bundle_id = "io.gruntwork.app.terragrunt" | ||
|
||
apple_id { | ||
username = "machine.apple@gruntwork.io" | ||
password = "@env:MACOS_AC_PASSWORD" | ||
} | ||
|
||
sign { | ||
application_identity = "Developer ID Application: Gruntwork, Inc." | ||
} | ||
|
||
zip { | ||
output_path = "cloud-nuke_darwin_arm64.zip" | ||
} |