ContentPosts from @dawnalvarez494..
Link
@faun shared a link, 3 years, 1 month ago
FAUN.dev()

AWS Chatbot Now Integrates With Microsoft Teams

AWS Chatbotnow supportstroubleshooting and managing AWS resources from Microsoft Teams, providingChatOpscapabilities to centralize infrastructure and application management while streamlining workflows. By integrating with Microsoft Teams, users can receive notifications from AWS services directly .. read more  

AWS Chatbot Now Integrates With Microsoft Teams
Link
@faun shared a link, 3 years, 1 month ago
FAUN.dev()

Infrastructure as SQL on AWS: IaSQL Enters Beta Adding Multi-Region and Transactions

IaSQL, an open-source service that managescloud infrastructure using SQL, recently launched its beta release with support for AWS multi-region and new AWS services, and infrastructure changes as transactions. The service treats infrastructure as data and maintains a two-way connection between the A.. read more  

Infrastructure as SQL on AWS: IaSQL Enters Beta Adding Multi-Region and Transactions
Link
@faun shared a link, 3 years, 1 month ago
FAUN.dev()

Create a Console Session from IAM Credentials

AWS Console sessions can be spawned using tools such asaws-vaultto make certain actions much easier than using the AWS CLI. You need to have eithersts:GetFederationTokenorsts:AssumeRolepermissions to generate the temporary credentials you will need. Use of this technique generates suspicious CloudT.. read more  

Create a Console Session from IAM Credentials
Link
@faun shared a link, 3 years, 1 month ago
FAUN.dev()

How to visualize IAM Access Analyzer policy validation findings with QuickSight

This blog post explains how to create anAmazon QuickSight dashboard to visualize IAM Access Analyzer policy validation findings, which can help you identify issues, provide actionable recommendations to resolve the issues, and enable you to author functional policies that meet security best practice.. read more  

How to visualize IAM Access Analyzer policy validation findings with QuickSight
Link
@faun shared a link, 3 years, 1 month ago
FAUN.dev()

ebook: Protecting your AWS environment from ransomware

AWS updated itsebook on protecting your AWS environment from ransomware, with new best practices and features since April 2020. The ebook covers a range of security capabilities to empower customers to protect themselves against ransomware, including: - unparalleled visibility, - efficient patching.. read more  

Link
@faun shared a link, 3 years, 1 month ago
FAUN.dev()

Using Amazon CloudWatch metrics to monitor time to expiration for Reserved Instances

Learn how to monitor the days remaining for Amazon EC2 Reserved Instances using AWS Lambda, Amazon CloudWatch, Amazon SNS, EventBridge, and CloudFormation. Receive an email notification when an EC2 Reserved Instance has fewer days remaining than a specified threshold. Follow the step-by-step guide .. read more  

Using Amazon CloudWatch metrics to monitor time to expiration for Reserved Instances
Link
@faun shared a link, 3 years, 1 month ago
FAUN.dev()

Getting started with multi-module workspaces

This tutorial teaches how to use multi-module workspaces in Go to write code in multiple modules simultaneously. You'll create a module, initialize a workspace, modify and use a local copy of a package, and learn about workspace commands. With workspaces, it's easy to make changes in one module and.. read more  

Link
@faun shared a link, 3 years, 1 month ago
FAUN.dev()

Reverse proxy with dynamic backend selection

Traditional reverse proxies are not sufficient for routing traffic based on unique hostnames that serve all customers. Caddyoffers a simple solution that uses Redis, Ruby and OpenSSL for generating a JWT, and Caddy as a reverse proxy layer. Caddy allows dynamic selection of upstream servers in less.. read more  

Reverse proxy with dynamic backend selection
Link
@faun shared a link, 3 years, 1 month ago
FAUN.dev()

Funcs, Interfaces, Generics, and Golang’s Standard Library Problem

According o the author of this post, Go's standard library has a problem -it lacks the use of generics. Generics enable more dynamic code selection at compile-time, while interfaces and higher-order functions provide more dynamic code selection at runtime. The absence of generics in the standard li.. read more  

Funcs, Interfaces, Generics, and Golang’s Standard Library Problem
Link
@faun shared a link, 3 years, 1 month ago
FAUN.dev()

a[low:high:max] in Golang

Golang has a "full slice expression" in the form ofa[low:high:max], where the third index sets the capacity of the slice. Slices are a solution to bounds checking for pointers in Golang, and they augment pointers with a length field for easy runtime bounds checking. The capacity of a slice acts as .. read more  

a[low:high:max] in Golang