/
osbornray
/
PythonHacks
Обзор
Документация
Войти
/
osbornray
/
PythonHacks
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
Pulumi_Universal_IaC_AWS_Python/Helpfile.txt
27 строк
567 B
RekhuGopal
Pulumi
13 ноя 2022, 13:25
13 ноя 2022, 13:25
7fd42cc
Код
Авторство
О чём код?
1. Install Pulumi choco install pulumi 2. Install Language Runtime install python3-venv python3-pip. 3. Configure Pulumi to access your AWS account $env:AWS_ACCESS_KEY_ID = "<YOUR_ACCESS_KEY_ID>"; $env:AWS_SECRET_ACCESS_KEY = "<YOUR_SECRET_ACCESS_KEY>" 4. Create a New Project pulumi new aws-python 5. Deploy stack pulumi up 6. Get the output of stack pulumi stack output bucket_name 7. Updated with index.html and run pulumi up 8. verify the object was created in your bucket aws s3 ls $(pulumi stack output bucket_name) 9. Deploy the Stack pulumi destroy