-
Notifications
You must be signed in to change notification settings - Fork 0
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
Showing
40 changed files
with
596 additions
and
261 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,17 @@ | ||
export { default as get } from './get'; | ||
export { default as init } from './init'; | ||
export { default as init_full } from './init-full'; | ||
export { default as init_upgrade } from './init-upgrade'; | ||
export { default as init_full_upgrade } from './init-full-upgrade'; | ||
export { default as providers_lock_delete } from './providers-lock-delete'; | ||
export { default as clean_dirs } from './clean-dirs'; | ||
export { default as providers_lock } from './providers-lock'; | ||
export { default as update } from './update'; | ||
export { default as plan } from './plan'; | ||
export { default as refresh } from './refresh'; | ||
export { default as apply } from './apply'; | ||
export { default as output_json } from './output-json'; | ||
export { default as output } from './output'; | ||
export { default as sync } from './sync'; | ||
export { default as sync_full } from './sync-full'; | ||
export { default as destroy } from './destroy'; | ||
export {default as get} from './get'; | ||
export {default as init} from './init'; | ||
export {default as init_full} from './init-full'; | ||
export {default as init_upgrade} from './init-upgrade'; | ||
export {default as init_full_upgrade} from './init-full-upgrade'; | ||
export {default as providers_lock_delete} from './providers-lock-delete'; | ||
export {default as clean_dirs} from './clean-dirs'; | ||
export {default as providers_lock} from './providers-lock'; | ||
export {default as update} from './update'; | ||
export {default as plan} from './plan'; | ||
export {default as refresh} from './refresh'; | ||
export {default as apply} from './apply'; | ||
export {default as output_json} from './output-json'; | ||
export {default as output} from './output'; | ||
export {default as sync} from './sync'; | ||
export {default as sync_full} from './sync-full'; | ||
export {default as destroy} from './destroy'; |
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,13 @@ | ||
import {layer_run} from '../types'; | ||
|
||
export default async (run: layer_run) => { | ||
await run(['terraform', 'providers', 'lock', '-platform=darwin_amd64', '-platform=linux_amd64', '-platform=windows_amd64', '-platform=darwin_arm64']); | ||
} | ||
await run([ | ||
'terraform', | ||
'providers', | ||
'lock', | ||
'-platform=darwin_amd64', | ||
'-platform=linux_amd64', | ||
'-platform=windows_amd64', | ||
'-platform=darwin_arm64', | ||
]); | ||
}; |
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
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
Oops, something went wrong.