-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add firewall to Pulumi #1375
Merged
jemrobinson
merged 18 commits into
alan-turing-institute:python-migration
from
jemrobinson:1374-add-firewall
Feb 16, 2023
Merged
Add firewall to Pulumi #1375
Changes from all commits
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
8196002
:sparkles: Add firewall to SHM
jemrobinson 4123b45
:sparkles: Add SHM route table
jemrobinson 6b8b1a0
:closed_lock_with_key: Add domain admin password to backend keyvault
jemrobinson 1f8fe3e
:sparkles: Add route table to direct traffic through the firewall. Ad…
jemrobinson b6a53ad
:bug: Allow route table to ignore added routes, preventing them from …
jemrobinson f80f22a
:rotating_light: Mark ResourceOptions as Optional
jemrobinson f98594c
:sparkles: Add NAT rule to RDP to domain controller via firewall
jemrobinson bfdeaec
:sparkles: Add subnet functionality to AzureIPv4Range
jemrobinson 7e56241
:rotating_light: Fix typing issues
jemrobinson aec7ed8
:recycle: Move subnet definitions out of SHM virtual network
jemrobinson 9157820
:rotating_light: Fix typing
jemrobinson f6b0950
:recycle: Standardise subnet handling across SHM and SRE
jemrobinson e173382
:bug: Allow PowershellDSC to reboot the VM during configuration
jemrobinson 47ab234
:sparkles: Add public DNS address for domain controller (to be replac…
jemrobinson fdf35e6
:bug: Fix secret overwriting when value is unchanged
jemrobinson fe1a9b5
:recycle: Refactor backend resource names
jemrobinson 904c58e
:wrench: Allow raw.githubusercontent.com from domain controller for s…
jemrobinson 32ee60a
:bug: Ensure that SHM DNS zone is delegated to SRE zone before trying…
jemrobinson File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Does this just trick the type checker that the result of
self.option("fqdn")
is always a string?What if it is empty?
What if it isn't a string?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is a limitation in the type signature of
Command.option
. It returnsdict[Unknown, Unknown] | Unknown | Any | Literal[False]
which are all of the possibilities thatcleo
can coerce the command-line arguments into.However, this isn't very useful for type checking. I'll have another think about this.