├── modules ├── eks-custom-ami-ec2-image-builder │ ├── output.tf │ ├── locals.tf │ ├── README.md │ ├── variables.tf │ └── main.tf ├── vpc │ ├── locals.tf │ ├── outputs.tf │ ├── variables.tf │ ├── README.md │ └── main.tf ├── ecs-fargate-windows │ ├── output.tf │ ├── locals.tf │ ├── README.md │ ├── variables.tf │ └── main.tf ├── managed-ad │ ├── locals.tf │ ├── outputs.tf │ ├── variables.tf │ ├── README.md │ └── main.tf ├── eks-windows │ ├── locals.tf │ ├── outputs.tf │ ├── scripts │ │ ├── userdata_windows.tftpl │ │ └── aws-auth-cm-windows.tftpl │ ├── README.md │ └── variables.tf ├── beanstalk │ ├── outputs.tf │ ├── variables.tf │ ├── README.md │ ├── locals.tf │ └── main.tf ├── aws-to-azure-bgp-vpn │ ├── main.tf │ ├── providers.tf │ ├── data.tf │ ├── resources.aws.tf │ ├── README.md │ └── variables.tf ├── ecs-ec2-windows │ ├── outputs.tf │ ├── locals.tf │ ├── README.md │ └── variables.tf ├── rds-sqlserver │ ├── README.md │ ├── variables.tf │ └── main.tf └── fsx-windows │ ├── README.md │ ├── variables.tf │ └── main.tf ├── workshops └── ENT303 │ ├── existing_webserverfiles │ ├── Views │ │ ├── _ViewStart.cshtml │ │ ├── Shared │ │ │ ├── Error.cshtml │ │ │ └── _Layout.cshtml │ │ ├── Home │ │ │ └── Index.cshtml │ │ └── Web.config │ ├── Global.asax │ ├── favicon.ico │ ├── CPUSTRES64.EXE │ ├── bin │ │ ├── WebGrease.dll │ │ ├── roslyn │ │ │ ├── csc.exe │ │ │ ├── csi.exe │ │ │ ├── vbc.exe │ │ │ ├── VBCSCompiler.exe │ │ │ ├── System.Console.dll │ │ │ ├── System.Net.Http.dll │ │ │ ├── System.AppContext.dll │ │ │ ├── System.ValueTuple.dll │ │ │ ├── System.Xml.XPath.dll │ │ │ ├── System.IO.FileSystem.dll │ │ │ ├── System.Net.Sockets.dll │ │ │ ├── Microsoft.CodeAnalysis.dll │ │ │ ├── System.IO.Compression.dll │ │ │ ├── System.Xml.XmlDocument.dll │ │ │ ├── System.Xml.ReaderWriter.dll │ │ │ ├── Microsoft.Win32.Primitives.dll │ │ │ ├── System.Reflection.Metadata.dll │ │ │ ├── System.Xml.XPath.XDocument.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.dll │ │ │ ├── System.Collections.Immutable.dll │ │ │ ├── System.Diagnostics.StackTrace.dll │ │ │ ├── System.Globalization.Calendars.dll │ │ │ ├── System.IO.Compression.ZipFile.dll │ │ │ ├── System.Text.Encoding.CodePages.dll │ │ │ ├── Microsoft.CodeAnalysis.Scripting.dll │ │ │ ├── System.IO.FileSystem.Primitives.dll │ │ │ ├── Microsoft.Build.Tasks.CodeAnalysis.dll │ │ │ ├── Microsoft.CodeAnalysis.VisualBasic.dll │ │ │ ├── Microsoft.DiaSymReader.Native.amd64.dll │ │ │ ├── Microsoft.DiaSymReader.Native.x86.dll │ │ │ ├── System.Diagnostics.DiagnosticSource.dll │ │ │ ├── System.Diagnostics.FileVersionInfo.dll │ │ │ ├── System.Threading.Tasks.Extensions.dll │ │ │ ├── System.Security.Cryptography.Encoding.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.Scripting.dll │ │ │ ├── System.Security.Cryptography.Algorithms.dll │ │ │ ├── System.Security.Cryptography.Primitives.dll │ │ │ ├── System.Security.Cryptography.X509Certificates.dll │ │ │ ├── System.Runtime.InteropServices.RuntimeInformation.dll │ │ │ ├── csi.rsp │ │ │ ├── csc.rsp │ │ │ ├── vbc.rsp │ │ │ ├── Microsoft.VisualBasic.Core.targets │ │ │ ├── Microsoft.CSharp.Core.targets │ │ │ ├── Microsoft.Managed.Core.targets │ │ │ └── csc.exe.config │ │ ├── Antlr3.Runtime.dll │ │ ├── Antlr3.Runtime.pdb │ │ ├── System.Web.Mvc.dll │ │ ├── CommunicationRig.dll │ │ ├── CommunicationRig.pdb │ │ ├── EntityFramework.dll │ │ ├── Newtonsoft.Json.dll │ │ ├── System.Web.Razor.dll │ │ ├── System.Web.Helpers.dll │ │ ├── System.Web.WebPages.dll │ │ ├── System.Web.Optimization.dll │ │ ├── EntityFramework.SqlServer.dll │ │ ├── System.Web.WebPages.Razor.dll │ │ ├── Microsoft.Web.Infrastructure.dll │ │ ├── System.Web.WebPages.Deployment.dll │ │ └── Microsoft.CodeDom.Providers.DotNetCompilerPlatform.dll │ ├── Content │ │ ├── success.png │ │ ├── Amazon-Web-Services-Logo-White.png │ │ └── Site.css │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ ├── Web.config │ └── Scripts │ │ └── jquery.validate.unobtrusive.min.js │ ├── terraform.tfvars │ ├── main.tf │ ├── codeblock01.tf │ ├── codeblock06.tf │ ├── variables.tf │ ├── codeblock08.tf │ ├── README.md │ ├── codeblock05.tf │ ├── codeblock04.tf │ ├── webserver_user_data.ps1 │ ├── codeblock03.tf │ ├── codeblock07.tf │ └── codeblock02.tf ├── CODE_OF_CONDUCT.md ├── .github ├── workflows │ ├── labels-workflow.yml │ ├── terraform-lint-workflow.yml │ └── terraform-fmt-workflow.yml └── ISSUE_TEMPLATE │ ├── feature_request.md │ └── bug_report.md ├── .gitignore ├── LICENSE.md ├── README.md └── CONTRIBUTING.md /modules/eks-custom-ami-ec2-image-builder/output.tf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/vpc/locals.tf: -------------------------------------------------------------------------------- 1 | locals { 2 | internet = "0.0.0.0/0" 3 | } -------------------------------------------------------------------------------- /workshops/ENT303/existing_webserverfiles/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } 4 | -------------------------------------------------------------------------------- /modules/ecs-fargate-windows/output.tf: -------------------------------------------------------------------------------- 1 | ## ALB DNS Name 2 | 3 | output "alb_dns_name" { 4 | value = aws_lb.ecs_alb.dns_name 5 | } 6 | -------------------------------------------------------------------------------- /workshops/ENT303/existing_webserverfiles/Global.asax: -------------------------------------------------------------------------------- 1 | <%@ Application Codebehind="Global.asax.cs" Inherits="CommunicationRig.MvcApplication" Language="C#" %> 2 | -------------------------------------------------------------------------------- /modules/managed-ad/locals.tf: -------------------------------------------------------------------------------- 1 | locals { 2 | ds_managed_ad_type = "MicrosoftAD" # Static input to force only MAD deployments 3 | ds_managed_ad_admin_secret_sufix = "admin" 4 | } -------------------------------------------------------------------------------- /workshops/ENT303/existing_webserverfiles/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/terraform-aws-windows-workloads-on-aws/HEAD/workshops/ENT303/existing_webserverfiles/favicon.ico -------------------------------------------------------------------------------- /workshops/ENT303/existing_webserverfiles/CPUSTRES64.EXE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/terraform-aws-windows-workloads-on-aws/HEAD/workshops/ENT303/existing_webserverfiles/CPUSTRES64.EXE -------------------------------------------------------------------------------- /workshops/ENT303/existing_webserverfiles/bin/WebGrease.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/terraform-aws-windows-workloads-on-aws/HEAD/workshops/ENT303/existing_webserverfiles/bin/WebGrease.dll -------------------------------------------------------------------------------- /modules/eks-windows/locals.tf: -------------------------------------------------------------------------------- 1 | locals { 2 | http_port = 80 3 | any_port = 0 4 | any_protocol = "-1" 5 | tcp_protocol = "tcp" 6 | all_ips_ipv4 = ["0.0.0.0/0"] 7 | all_ips_ipv6 = ["::/0"] 8 | } -------------------------------------------------------------------------------- /workshops/ENT303/existing_webserverfiles/Content/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/terraform-aws-windows-workloads-on-aws/HEAD/workshops/ENT303/existing_webserverfiles/Content/success.png -------------------------------------------------------------------------------- /workshops/ENT303/existing_webserverfiles/bin/roslyn/csc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/terraform-aws-windows-workloads-on-aws/HEAD/workshops/ENT303/existing_webserverfiles/bin/roslyn/csc.exe -------------------------------------------------------------------------------- /workshops/ENT303/existing_webserverfiles/bin/roslyn/csi.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/terraform-aws-windows-workloads-on-aws/HEAD/workshops/ENT303/existing_webserverfiles/bin/roslyn/csi.exe -------------------------------------------------------------------------------- /workshops/ENT303/existing_webserverfiles/bin/roslyn/vbc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/terraform-aws-windows-workloads-on-aws/HEAD/workshops/ENT303/existing_webserverfiles/bin/roslyn/vbc.exe -------------------------------------------------------------------------------- /workshops/ENT303/existing_webserverfiles/bin/Antlr3.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/terraform-aws-windows-workloads-on-aws/HEAD/workshops/ENT303/existing_webserverfiles/bin/Antlr3.Runtime.dll -------------------------------------------------------------------------------- /workshops/ENT303/existing_webserverfiles/bin/Antlr3.Runtime.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/terraform-aws-windows-workloads-on-aws/HEAD/workshops/ENT303/existing_webserverfiles/bin/Antlr3.Runtime.pdb -------------------------------------------------------------------------------- /workshops/ENT303/existing_webserverfiles/bin/System.Web.Mvc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/terraform-aws-windows-workloads-on-aws/HEAD/workshops/ENT303/existing_webserverfiles/bin/System.Web.Mvc.dll -------------------------------------------------------------------------------- /modules/eks-windows/outputs.tf: -------------------------------------------------------------------------------- 1 | output "eks_cluster_name" { 2 | value = aws_eks_cluster.eks_windows.name 3 | } 4 | 5 | output "eks_cluster_status" { 6 | value = aws_eks_cluster.eks_windows.status 7 | } 8 | -------------------------------------------------------------------------------- /workshops/ENT303/existing_webserverfiles/bin/CommunicationRig.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/terraform-aws-windows-workloads-on-aws/HEAD/workshops/ENT303/existing_webserverfiles/bin/CommunicationRig.dll -------------------------------------------------------------------------------- /workshops/ENT303/existing_webserverfiles/bin/CommunicationRig.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/terraform-aws-windows-workloads-on-aws/HEAD/workshops/ENT303/existing_webserverfiles/bin/CommunicationRig.pdb -------------------------------------------------------------------------------- /workshops/ENT303/existing_webserverfiles/bin/EntityFramework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/terraform-aws-windows-workloads-on-aws/HEAD/workshops/ENT303/existing_webserverfiles/bin/EntityFramework.dll -------------------------------------------------------------------------------- /workshops/ENT303/existing_webserverfiles/bin/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/terraform-aws-windows-workloads-on-aws/HEAD/workshops/ENT303/existing_webserverfiles/bin/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /workshops/ENT303/existing_webserverfiles/bin/System.Web.Razor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/terraform-aws-windows-workloads-on-aws/HEAD/workshops/ENT303/existing_webserverfiles/bin/System.Web.Razor.dll -------------------------------------------------------------------------------- /workshops/ENT303/existing_webserverfiles/bin/System.Web.Helpers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/terraform-aws-windows-workloads-on-aws/HEAD/workshops/ENT303/existing_webserverfiles/bin/System.Web.Helpers.dll -------------------------------------------------------------------------------- /workshops/ENT303/existing_webserverfiles/bin/System.Web.WebPages.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/terraform-aws-windows-workloads-on-aws/HEAD/workshops/ENT303/existing_webserverfiles/bin/System.Web.WebPages.dll -------------------------------------------------------------------------------- /workshops/ENT303/existing_webserverfiles/bin/roslyn/VBCSCompiler.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/terraform-aws-windows-workloads-on-aws/HEAD/workshops/ENT303/existing_webserverfiles/bin/roslyn/VBCSCompiler.exe -------------------------------------------------------------------------------- /workshops/ENT303/existing_webserverfiles/bin/roslyn/System.Console.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/terraform-aws-windows-workloads-on-aws/HEAD/workshops/ENT303/existing_webserverfiles/bin/roslyn/System.Console.dll -------------------------------------------------------------------------------- /workshops/ENT303/existing_webserverfiles/bin/roslyn/System.Net.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/terraform-aws-windows-workloads-on-aws/HEAD/workshops/ENT303/existing_webserverfiles/bin/roslyn/System.Net.Http.dll -------------------------------------------------------------------------------- /workshops/ENT303/existing_webserverfiles/bin/System.Web.Optimization.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/terraform-aws-windows-workloads-on-aws/HEAD/workshops/ENT303/existing_webserverfiles/bin/System.Web.Optimization.dll -------------------------------------------------------------------------------- /workshops/ENT303/existing_webserverfiles/bin/roslyn/System.AppContext.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/terraform-aws-windows-workloads-on-aws/HEAD/workshops/ENT303/existing_webserverfiles/bin/roslyn/System.AppContext.dll -------------------------------------------------------------------------------- /workshops/ENT303/existing_webserverfiles/bin/roslyn/System.ValueTuple.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/terraform-aws-windows-workloads-on-aws/HEAD/workshops/ENT303/existing_webserverfiles/bin/roslyn/System.ValueTuple.dll -------------------------------------------------------------------------------- /workshops/ENT303/existing_webserverfiles/bin/roslyn/System.Xml.XPath.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/terraform-aws-windows-workloads-on-aws/HEAD/workshops/ENT303/existing_webserverfiles/bin/roslyn/System.Xml.XPath.dll -------------------------------------------------------------------------------- /workshops/ENT303/existing_webserverfiles/bin/EntityFramework.SqlServer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/terraform-aws-windows-workloads-on-aws/HEAD/workshops/ENT303/existing_webserverfiles/bin/EntityFramework.SqlServer.dll -------------------------------------------------------------------------------- /workshops/ENT303/existing_webserverfiles/bin/System.Web.WebPages.Razor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/terraform-aws-windows-workloads-on-aws/HEAD/workshops/ENT303/existing_webserverfiles/bin/System.Web.WebPages.Razor.dll -------------------------------------------------------------------------------- /workshops/ENT303/existing_webserverfiles/bin/roslyn/System.IO.FileSystem.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/terraform-aws-windows-workloads-on-aws/HEAD/workshops/ENT303/existing_webserverfiles/bin/roslyn/System.IO.FileSystem.dll -------------------------------------------------------------------------------- /workshops/ENT303/existing_webserverfiles/bin/roslyn/System.Net.Sockets.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/terraform-aws-windows-workloads-on-aws/HEAD/workshops/ENT303/existing_webserverfiles/bin/roslyn/System.Net.Sockets.dll -------------------------------------------------------------------------------- /workshops/ENT303/existing_webserverfiles/bin/Microsoft.Web.Infrastructure.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/terraform-aws-windows-workloads-on-aws/HEAD/workshops/ENT303/existing_webserverfiles/bin/Microsoft.Web.Infrastructure.dll -------------------------------------------------------------------------------- /workshops/ENT303/existing_webserverfiles/bin/roslyn/Microsoft.CodeAnalysis.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/terraform-aws-windows-workloads-on-aws/HEAD/workshops/ENT303/existing_webserverfiles/bin/roslyn/Microsoft.CodeAnalysis.dll -------------------------------------------------------------------------------- /workshops/ENT303/existing_webserverfiles/bin/roslyn/System.IO.Compression.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/terraform-aws-windows-workloads-on-aws/HEAD/workshops/ENT303/existing_webserverfiles/bin/roslyn/System.IO.Compression.dll -------------------------------------------------------------------------------- /workshops/ENT303/existing_webserverfiles/bin/roslyn/System.Xml.XmlDocument.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/terraform-aws-windows-workloads-on-aws/HEAD/workshops/ENT303/existing_webserverfiles/bin/roslyn/System.Xml.XmlDocument.dll -------------------------------------------------------------------------------- /workshops/ENT303/existing_webserverfiles/bin/System.Web.WebPages.Deployment.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/terraform-aws-windows-workloads-on-aws/HEAD/workshops/ENT303/existing_webserverfiles/bin/System.Web.WebPages.Deployment.dll -------------------------------------------------------------------------------- /workshops/ENT303/existing_webserverfiles/bin/roslyn/System.Xml.ReaderWriter.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/terraform-aws-windows-workloads-on-aws/HEAD/workshops/ENT303/existing_webserverfiles/bin/roslyn/System.Xml.ReaderWriter.dll -------------------------------------------------------------------------------- /workshops/ENT303/existing_webserverfiles/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/terraform-aws-windows-workloads-on-aws/HEAD/workshops/ENT303/existing_webserverfiles/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /workshops/ENT303/existing_webserverfiles/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/terraform-aws-windows-workloads-on-aws/HEAD/workshops/ENT303/existing_webserverfiles/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /workshops/ENT303/existing_webserverfiles/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/terraform-aws-windows-workloads-on-aws/HEAD/workshops/ENT303/existing_webserverfiles/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /workshops/ENT303/existing_webserverfiles/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/terraform-aws-windows-workloads-on-aws/HEAD/workshops/ENT303/existing_webserverfiles/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /workshops/ENT303/existing_webserverfiles/Content/Amazon-Web-Services-Logo-White.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/terraform-aws-windows-workloads-on-aws/HEAD/workshops/ENT303/existing_webserverfiles/Content/Amazon-Web-Services-Logo-White.png -------------------------------------------------------------------------------- /workshops/ENT303/existing_webserverfiles/bin/roslyn/Microsoft.Win32.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/terraform-aws-windows-workloads-on-aws/HEAD/workshops/ENT303/existing_webserverfiles/bin/roslyn/Microsoft.Win32.Primitives.dll -------------------------------------------------------------------------------- /workshops/ENT303/existing_webserverfiles/bin/roslyn/System.Reflection.Metadata.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/terraform-aws-windows-workloads-on-aws/HEAD/workshops/ENT303/existing_webserverfiles/bin/roslyn/System.Reflection.Metadata.dll -------------------------------------------------------------------------------- /workshops/ENT303/existing_webserverfiles/bin/roslyn/System.Xml.XPath.XDocument.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/terraform-aws-windows-workloads-on-aws/HEAD/workshops/ENT303/existing_webserverfiles/bin/roslyn/System.Xml.XPath.XDocument.dll -------------------------------------------------------------------------------- /workshops/ENT303/existing_webserverfiles/bin/roslyn/Microsoft.CodeAnalysis.CSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/terraform-aws-windows-workloads-on-aws/HEAD/workshops/ENT303/existing_webserverfiles/bin/roslyn/Microsoft.CodeAnalysis.CSharp.dll -------------------------------------------------------------------------------- /workshops/ENT303/existing_webserverfiles/bin/roslyn/System.Collections.Immutable.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/terraform-aws-windows-workloads-on-aws/HEAD/workshops/ENT303/existing_webserverfiles/bin/roslyn/System.Collections.Immutable.dll -------------------------------------------------------------------------------- /workshops/ENT303/existing_webserverfiles/bin/roslyn/System.Diagnostics.StackTrace.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/terraform-aws-windows-workloads-on-aws/HEAD/workshops/ENT303/existing_webserverfiles/bin/roslyn/System.Diagnostics.StackTrace.dll -------------------------------------------------------------------------------- /workshops/ENT303/existing_webserverfiles/bin/roslyn/System.Globalization.Calendars.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/terraform-aws-windows-workloads-on-aws/HEAD/workshops/ENT303/existing_webserverfiles/bin/roslyn/System.Globalization.Calendars.dll -------------------------------------------------------------------------------- /workshops/ENT303/existing_webserverfiles/bin/roslyn/System.IO.Compression.ZipFile.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/terraform-aws-windows-workloads-on-aws/HEAD/workshops/ENT303/existing_webserverfiles/bin/roslyn/System.IO.Compression.ZipFile.dll -------------------------------------------------------------------------------- /workshops/ENT303/existing_webserverfiles/bin/roslyn/System.Text.Encoding.CodePages.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/terraform-aws-windows-workloads-on-aws/HEAD/workshops/ENT303/existing_webserverfiles/bin/roslyn/System.Text.Encoding.CodePages.dll -------------------------------------------------------------------------------- /workshops/ENT303/existing_webserverfiles/bin/roslyn/Microsoft.CodeAnalysis.Scripting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/terraform-aws-windows-workloads-on-aws/HEAD/workshops/ENT303/existing_webserverfiles/bin/roslyn/Microsoft.CodeAnalysis.Scripting.dll -------------------------------------------------------------------------------- /workshops/ENT303/existing_webserverfiles/bin/roslyn/System.IO.FileSystem.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/terraform-aws-windows-workloads-on-aws/HEAD/workshops/ENT303/existing_webserverfiles/bin/roslyn/System.IO.FileSystem.Primitives.dll -------------------------------------------------------------------------------- /workshops/ENT303/existing_webserverfiles/bin/roslyn/Microsoft.Build.Tasks.CodeAnalysis.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/terraform-aws-windows-workloads-on-aws/HEAD/workshops/ENT303/existing_webserverfiles/bin/roslyn/Microsoft.Build.Tasks.CodeAnalysis.dll -------------------------------------------------------------------------------- /workshops/ENT303/existing_webserverfiles/bin/roslyn/Microsoft.CodeAnalysis.VisualBasic.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/terraform-aws-windows-workloads-on-aws/HEAD/workshops/ENT303/existing_webserverfiles/bin/roslyn/Microsoft.CodeAnalysis.VisualBasic.dll -------------------------------------------------------------------------------- /workshops/ENT303/existing_webserverfiles/bin/roslyn/Microsoft.DiaSymReader.Native.amd64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/terraform-aws-windows-workloads-on-aws/HEAD/workshops/ENT303/existing_webserverfiles/bin/roslyn/Microsoft.DiaSymReader.Native.amd64.dll -------------------------------------------------------------------------------- /workshops/ENT303/existing_webserverfiles/bin/roslyn/Microsoft.DiaSymReader.Native.x86.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/terraform-aws-windows-workloads-on-aws/HEAD/workshops/ENT303/existing_webserverfiles/bin/roslyn/Microsoft.DiaSymReader.Native.x86.dll -------------------------------------------------------------------------------- /workshops/ENT303/existing_webserverfiles/bin/roslyn/System.Diagnostics.DiagnosticSource.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/terraform-aws-windows-workloads-on-aws/HEAD/workshops/ENT303/existing_webserverfiles/bin/roslyn/System.Diagnostics.DiagnosticSource.dll -------------------------------------------------------------------------------- /workshops/ENT303/existing_webserverfiles/bin/roslyn/System.Diagnostics.FileVersionInfo.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/terraform-aws-windows-workloads-on-aws/HEAD/workshops/ENT303/existing_webserverfiles/bin/roslyn/System.Diagnostics.FileVersionInfo.dll -------------------------------------------------------------------------------- /workshops/ENT303/existing_webserverfiles/bin/roslyn/System.Threading.Tasks.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/terraform-aws-windows-workloads-on-aws/HEAD/workshops/ENT303/existing_webserverfiles/bin/roslyn/System.Threading.Tasks.Extensions.dll -------------------------------------------------------------------------------- /workshops/ENT303/existing_webserverfiles/bin/roslyn/System.Security.Cryptography.Encoding.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/terraform-aws-windows-workloads-on-aws/HEAD/workshops/ENT303/existing_webserverfiles/bin/roslyn/System.Security.Cryptography.Encoding.dll -------------------------------------------------------------------------------- /workshops/ENT303/existing_webserverfiles/bin/roslyn/Microsoft.CodeAnalysis.CSharp.Scripting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/terraform-aws-windows-workloads-on-aws/HEAD/workshops/ENT303/existing_webserverfiles/bin/roslyn/Microsoft.CodeAnalysis.CSharp.Scripting.dll -------------------------------------------------------------------------------- /workshops/ENT303/existing_webserverfiles/bin/roslyn/System.Security.Cryptography.Algorithms.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/terraform-aws-windows-workloads-on-aws/HEAD/workshops/ENT303/existing_webserverfiles/bin/roslyn/System.Security.Cryptography.Algorithms.dll -------------------------------------------------------------------------------- /workshops/ENT303/existing_webserverfiles/bin/roslyn/System.Security.Cryptography.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/terraform-aws-windows-workloads-on-aws/HEAD/workshops/ENT303/existing_webserverfiles/bin/roslyn/System.Security.Cryptography.Primitives.dll -------------------------------------------------------------------------------- /modules/beanstalk/outputs.tf: -------------------------------------------------------------------------------- 1 | output "beanstalk_net_windows_uri" { 2 | value = aws_elastic_beanstalk_environment.net_windows_environment.endpoint_url 3 | } 4 | 5 | output "beanstalk_net_windows_cname" { 6 | value = aws_elastic_beanstalk_environment.net_windows_environment.cname 7 | } -------------------------------------------------------------------------------- /workshops/ENT303/existing_webserverfiles/bin/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/terraform-aws-windows-workloads-on-aws/HEAD/workshops/ENT303/existing_webserverfiles/bin/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.dll -------------------------------------------------------------------------------- /workshops/ENT303/existing_webserverfiles/bin/roslyn/System.Security.Cryptography.X509Certificates.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/terraform-aws-windows-workloads-on-aws/HEAD/workshops/ENT303/existing_webserverfiles/bin/roslyn/System.Security.Cryptography.X509Certificates.dll -------------------------------------------------------------------------------- /workshops/ENT303/existing_webserverfiles/bin/roslyn/System.Runtime.InteropServices.RuntimeInformation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/terraform-aws-windows-workloads-on-aws/HEAD/workshops/ENT303/existing_webserverfiles/bin/roslyn/System.Runtime.InteropServices.RuntimeInformation.dll -------------------------------------------------------------------------------- /modules/aws-to-azure-bgp-vpn/main.tf: -------------------------------------------------------------------------------- 1 | terraform { 2 | required_providers { 3 | aws = { 4 | source = "hashicorp/aws" 5 | version = "~> 5.0" 6 | } 7 | azurerm = { 8 | source = "hashicorp/azurerm" 9 | version = "~> 4.0.1" 10 | } 11 | } 12 | } -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | ## Code of Conduct 2 | This project has adopted the [Amazon Open Source Code of Conduct](https://aws.github.io/code-of-conduct). 3 | For more information see the [Code of Conduct FAQ](https://aws.github.io/code-of-conduct-faq) or contact 4 | opensource-codeofconduct@amazon.com with any additional questions or comments. 5 | -------------------------------------------------------------------------------- /modules/managed-ad/outputs.tf: -------------------------------------------------------------------------------- 1 | output "ds_managed_ad_id" { 2 | value = aws_directory_service_directory.ds_managed_ad.id 3 | } 4 | 5 | output "ds_managed_ad_ips" { 6 | value = aws_directory_service_directory.ds_managed_ad.dns_ip_addresses 7 | } 8 | 9 | output "managed_ad_password_secret_id" { 10 | value = aws_secretsmanager_secret.mad_admin_secret.id 11 | } -------------------------------------------------------------------------------- /workshops/ENT303/existing_webserverfiles/bin/roslyn/csi.rsp: -------------------------------------------------------------------------------- 1 | /r:System 2 | /r:System.Core 3 | /r:Microsoft.CSharp 4 | /r:System.ValueTuple.dll 5 | /u:System 6 | /u:System.IO 7 | /u:System.Collections.Generic 8 | /u:System.Console 9 | /u:System.Diagnostics 10 | /u:System.Dynamic 11 | /u:System.Linq 12 | /u:System.Linq.Expressions 13 | /u:System.Text 14 | /u:System.Threading.Tasks -------------------------------------------------------------------------------- /workshops/ENT303/terraform.tfvars: -------------------------------------------------------------------------------- 1 | # Naming Convention Values 2 | CustomerCode = "pdo" 3 | EnvironmentCode = "pd" 4 | 5 | # Network Values 6 | vpc_cidr = "10.180" 7 | 8 | # Regions 9 | region = "us-west-2" 10 | az_01 = "us-west-2a" 11 | az_02 = "us-west-2b" 12 | 13 | # Global Tags 14 | CustomerTag = "planentary defence organization" 15 | EnvironmentTag = "production" -------------------------------------------------------------------------------- /workshops/ENT303/existing_webserverfiles/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 |
11 | | Name | 30 |Signal | 31 |Timestamp | 32 |
|---|---|---|
| @signal.Username | 39 |Sent | 40 |@signal.Timestamp.ToShortDateString() @signal.Timestamp.ToLongTimeString() | 41 |