Aluno | Repo | Anotações | Module 2 Know | Lab IAM | Module 3 Know | Lab Static S3 | LAB EFS | Lab VPC | Module 7 Know |
---|---|---|---|---|---|---|---|---|---|
ARTHUR FRA... | arthurrfrancis/das-2-2025-2 | 👎Descrever | 👍 | 👍 | 👍 | 👍 | 👍 | 👍 | 👍 |
ARTUR BO... | NÃO ENCONTRADO | 👎 | 👍 | 👍 | 👍 | 👍 | 👍 | 👍 | 👍 |
FABIANA ... | FabianaPauli/das-2-2025-2 | 👍 | 👍 | 👍 | 👍 | 👍 | 👍 | 👍 | 👍 |
FELIPE ... | thekogami/das-2-2025-2 | 👍 | 👍 | 👎 | 👍 | 👍 | 👍 | 👍 | 👍 |
GABRIEL NA... | SrSuco/das-2-2025-2 | 👎S3 | 👍 | 👍 | 👍 | 👍 | 👍 | 👍 | 👍 |
GABRIEL GUI... | gabrielguidini/das-2-2025-2 | 👎S3 | 👍 | 👍 | 👍 | 👍 | 👍 | 👍 | 👍 |
GUILHERME ... | guizinhoL/das-2-2025-2 | 👍 | 👎 | 👍 | 👍 | 👍 | 👎 | 👍 | 👍 |
HENRIQUE ... | riqueolvr/das-2-2025-2 | 👎Descrever | 👍 | 👍 | 👍 | 👍 | 👍 | 👍 | 👍 |
- ALÍCIA ... https://github.com/AliciaSchiochetSouza/das-1-2025-2-b
- ARTHUR ZIMM... https://github.com/zimma08/das-1-2025-2-b
- ARTUR ÁVI... https://github.com/ArturAvilaa/das-1-2025-2-b
- ARTUR XAV... https://github.com/xavierrreu/das-1-2025-2-b
- CARLOS ... https://github.com/carlitosxsx/das-1-2025-2-b
- CAUÃ ... https://github.com/Richlin15/das-1-2025-2-b
- DEIVID ... https://github.com/DeividMatos1/das-1-2025-2-b
- FELIPE ... https://github.com/felipedalcoquio/das-1-2025-2-b
- FRANCISCO ... https://github.com/franciscomarcello17/das-1-2025-2-b
- [GUILHERME
- ANDRÉ... https://github.com/andreemoura1/das-1-2025-2-a
- JOÃO PEDRO B... https://github.com/Binelo/das-1-2025-2-a
- CHRISTYAN... https://github.com/Christyassolini/das-1-2025-2-a
- GUSTAVO... https://github.com/guarannius-estudos/das-1-2025-2-a
- GUILHERME COSTA... https://github.com/GuilhermeCostaLima/das-1-2025-2-a
- IAN... https://github.com/iansergio/das-1-2025-2-a
- ISABELE... https://github.com/IsabeleVitoriaPires/das-1-2025-2-a
- NYCOLLAS... https://github.com/jamesncls/das-1-2025-2-a
- [JOÃO MATHEUS... https://github.com/JoaoMatheusvo/das-1-2025-2-a](https://github.com/JoaoMatheusvo/das-1-2025-2-
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$url = "google.com" | |
(Measure-Command -Expression { $site = Invoke-WebRequest -Uri $url -UseBasicParsing }).Milliseconds |
Link to video: https://youtu.be/0Hk4t17SxRc
- Regular Azure IoT Operations deployment using the codespace path
- Event Grid namespace
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
AWSTemplateFormatVersion: 2010-09-09 | |
Description: Webserver and RDS Postgresql | |
Parameters: | |
VPCID: | |
Description: ID of an existing VPC | |
Type: AWS::EC2::VPC::Id | |
AvailabilityZone: | |
Type: AWS::EC2::AvailabilityZone::Name | |
EnvironmentType: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
yum update -y | |
yum install -y php httpd | |
systemctl start httpd | |
systemctl enable httpd | |
usermod -a -G apache ec2-user | |
chown -R ec2-user:apache /var/www | |
chmod 2775 /var/www | |
find /var/www -type d -exec chmod 2775 {} \; | |
find /var/www -type f -exec chmod 0664 {} \; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#cloud-config | |
apt_update: true | |
packages: | |
- apache2 | |
- php | |
- php7.4-curl | |
runcmd: | |
- echo "<h1>Instancia:</h1> <?php echo json_decode(file_get_contents('http://169.254.169.254/metadata/instance/compute?api-version=2021-02-01&format=json', false, stream_context_create(array('http'=>array('method'=>'GET','header'=>'Metadata:true')))),true){'vmId'}; phpinfo();?>" > /var/www/html/index.php |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Parameters: | |
SUBNETID: | |
Description: ID subnet | |
Type: AWS::EC2::Subnet::Id | |
VPCID: | |
Description: ID of an existing VPC | |
Type: AWS::EC2::VPC::Id | |
Resources: | |
InstanceSecurityGroup: | |
Type: AWS::EC2::SecurityGroup |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#cloud-config | |
package_update: true | |
package_upgrade: true | |
packages: | |
- apache2 | |
runcmd: | |
- systemctl enable apache2 | |
- curl -s -H Metadata:true --noproxy "*" "http://169.254.169.254/metadata/instance/compute?api-version=2021-02-01" | sudo tee /var/www/html/index.html |