What to do when you want to skip processing with Terraform’s Optional attribute

If you set null to Terraform’s Optional attribute value, it will skip the process nicely. Introduction It’s been a long time since i wrote articles for personal reasons, i’ll try to be more active and share my tips with you . When creating Terraform resources, there were cases where you wanted to skip or omit … Lire la suite What to do when you want to skip processing with Terraform’s Optional attribute

Évaluez ceci :

Implement message sending and receiving with Spring Boot + Amazon MQ (ActiveMQ)

This section describes the procedure for building Apache ActiveMQ with Amazon MQ and using it from the Spring Boot application. In addition, we will verify the operation on the application side when a file over occurs in ActiveMQ. I will describe how to build Apache ActiveMQ with Amazon MQ and use it from Spring Boot application. … Lire la suite Implement message sending and receiving with Spring Boot + Amazon MQ (ActiveMQ)

Évaluez ceci :

Lambda Extensions from a developer point of view (simple explanation)

Since October 09, 2020, Lambda’s new feature Lambda Extensions was preview-released.The official information is below. Introducing AWS Lambda Extensions – In previewBuilding Extensions for AWS Lambda – In previewaws-samples / aws-lambda-extensions –Github I read these briefly, but my impression was, « I’m not sure what I’m happy about … ». I am sad because I have poor understanding.However, … Lire la suite Lambda Extensions from a developer point of view (simple explanation)

Évaluez ceci :

How to use AWS SDK Clients in Spring Boot environment with externalized properties

Intro As Java developer i’ve seen many methods that devers uses to interact with AWS SDK in the Spring Boot environment, but i prefer this style among all others xD Normally, when using AWS SDK for Java clients in Spring environment, i advise you to use each client as a bean, write Java configuration as follows. AWS SDK Client in Spring environment … Lire la suite How to use AWS SDK Clients in Spring Boot environment with externalized properties

Évaluez ceci :

Script that makes AWS Assume Role feel good ( AWS)

Hello, Do you have an Assume Role?If YES and If you use AWS-related CLI tools in the switch roll destination environment, you will usually need to use the Assume Role.I wrote a script about how to ease the task of assuming a role programmatically because it is even tedious to do that . About scripts The … Lire la suite Script that makes AWS Assume Role feel good ( AWS)

Évaluez ceci :

How docker Works in Laymans Terms

Docker c’est une empilement d’image  Os au dessus duquels  uen image Emac( editeur de text audessus une image Njinx (serveur) au dessus un conteneur accessible en écriture ( car les container docker sont accessible qu’en lecture seul )  ==> c’est juste un proto exemple .   Une image peut être construire : -à partir d’un … Lire la suite How docker Works in Laymans Terms

Évaluez ceci :

Terrafrom.tfstate file how it’is updated why we shoud use remote_state

By Matt Burgess WHATS TFSTATE ? terraform.tfstate   ctm.tfstate par exemple c le fichier qui régit l’état de l’infrastructure (toute les resource deployés par terraform après un APPLY) donc apres un apply ce fichier là est updaté ) on peut le trouver en local ou bien en remote_state sur un s3 (pour que toute l’équipe ait … Lire la suite Terrafrom.tfstate file how it’is updated why we shoud use remote_state

Évaluez ceci :

Terraform module and how you can creat export and use it

un module deployé sur github ou gitlab ou peut importe ce module comporte des fichiers output.tf variable.tf  main.tf ou autres … le plus important c’est que dans main.tf on aura la déclaration de plusieurs ou une ressource  sous la forme de monModule.tf module « db_instance » {} module « db_parameter_group » {} output.tf  ( du module) the Database output output … Lire la suite Terraform module and how you can creat export and use it

Évaluez ceci :