Author name: greencamp

How to Use the CloudFormation to automatically provision a WordPress website

Join function is used heavily in AWS CloudFormation. Take a look at Amazon document This function is convenient when set configuration in AWS Cloudformation. “/etc/cfn/hooks.d/cfn-auto-reloader.conf”: { “content”: { “Fn::Join”: [ “”, [ “[cfn-auto-reloader-hook]\n”, “triggers=post.update\n”, “path=Resources.WebServer.Metadata.AWS::CloudFormation::Init\n”, “action=/opt/aws/bin/cfn-init -v “, ” –stack “, { “Ref”: “AWS::StackName” }, ” –resource WebServer “, ” –configsets wordpress_install “, ” –region …

How to Use the CloudFormation to automatically provision a WordPress website Read More »

aws solution architect professional certification – Free course part 4 : S3

What is S3 lifecycle policy? AWS S3 lifecycle policy consists of rules applied to a group of objects Two types of actions in a lifecycle policy: Transition actions: Move objects to another storage class after a certain period. Expiration actions: Delete objects after a specified time. Lifecycle policies can: Reduce storage costs by transitioning objects …

aws solution architect professional certification – Free course part 4 : S3 Read More »

Using a secrets manager and SSM Parameter Store in AWS

What is Secrets Manager Secrets Manager is a powerful tool utilized for various purposes, including storing, rotating, monitoring, and controlling access to secrets like database credentials, API keys, and OAuth tokens. The automatic rotation of secrets can be seamlessly achieved using AWS Lambda functions. One of the key advantages of Secrets Manager is that it …

Using a secrets manager and SSM Parameter Store in AWS Read More »

AWS solution architect professional certification part 2:Using AWS Organizations

What is AWS Organizations AWS Organizations is a service that aims to make managing and billing multiple AWS accounts easier. With AWS Organizations, you can consolidate your accounts under one umbrella, improving their management and billing processes. Creating new accounts within this organizational structure becomes a simple and fast task. What’s more, AWS Organizations provides …

AWS solution architect professional certification part 2:Using AWS Organizations Read More »

aws solution architect professional certification – Free course part 1

AWS Identity and Access Management (IAM) is a web service provided by Amazon Web Services (AWS) that enables you to manage user identities and their access to AWS resources. IAM allows you to create and manage users, groups, and roles, and define fine-grained permissions and access policies for them. With IAM, you can control who …

aws solution architect professional certification – Free course part 1 Read More »

Tutorial:How to Use OpenAI GPT for Python Projects part 2

When exploring OpenAI’s models, it’s essential to familiarize yourself with the main models or families available, namely GPT-3, Codex, and the Content Filter model . However, it’s worth noting that while researching online documentation, you may encounter mentions of other model names, leading to potential confusion. It’s crucial to discern that these documents might refer …

Tutorial:How to Use OpenAI GPT for Python Projects part 2 Read More »

Tutorial:How to Use OpenAI GPT for Python Projects part 1

In this tutorial, Python 3.9.5 serves as the designated version for Python development. Pip, the package installer for Python, will be utilized to conveniently install packages from the Python Package Index and other indexes. To ensure an isolated development environment, a virtual environment will be created, allowing you to work independently of the Python version …

Tutorial:How to Use OpenAI GPT for Python Projects part 1 Read More »

Scroll to Top