-
Notifications
You must be signed in to change notification settings - Fork 47
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
feat: Adding MultiCloud(FCR 2 AWS and Azure) Connection Example #409
Conversation
srushti-patl
commented
Oct 13, 2023
- Add Multi-cloud Connection example for FCR to AWS and Azure
Codecov ReportAttention:
❗ Your organization needs to install the Codecov GitHub app to enable full functionality. Additional details and impacted files@@ Coverage Diff @@
## main #409 +/- ##
==========================================
+ Coverage 59.56% 60.32% +0.76%
==========================================
Files 98 99 +1
Lines 19754 19889 +135
==========================================
+ Hits 11767 11999 +232
+ Misses 7684 7585 -99
- Partials 303 305 +2
☔ View full report in Codecov by Sentry. |
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.
Small changes requested. Great addition.
} | ||
} | ||
output "azure_connection_azure" { | ||
value = var.azure_connection_name |
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.
Nit: This should be grabbed from the created resource and not just directly from the input variable. It will be the same name but better to have it derived from the correct place.
} | ||
|
||
output "aws_connection_name" { | ||
value = var.aws_connection_name |
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.
Same as comment about azure connection.
@@ -0,0 +1,109 @@ | |||
# ECX Fabric Layer2 MultiCloud Connection: FCR 2 AWS and Azure |
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.
Excellent PR, Srushti! Just had a couple of Nit comments on this. Be sure to add the variables.tf with this PR and then it will be ready to go.
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.
LGTM. Good edits.