-
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.
Add support for isSudoEnabled to AWS SSH installations (#43)
Adds a new management property, `is_sudo_enabled`, to the AWS SSH installation resource. The parameter defaults to "false" and can be omitted. ### Examples ##### Disabled ``` resource "p0_ssh_aws" "aws-example" { account_id = "123456789012" group_key = "Customer" } ``` ``` resource "p0_ssh_aws" "aws-example" { account_id = "123456789012" group_key = "Customer" is_sudo_enabled = false } ``` ##### Enabled ``` resource "p0_ssh_aws" "aws-example" { account_id = "123456789012" group_key = "Customer" is_sudo_enabled = true } ```
- Loading branch information
Showing
2 changed files
with
30 additions
and
8 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