skip to Main Content

Amazon web services – Terraform detects changes and adds/removes resources when executed apply/plan for next time to changes made in aws_s3_bucket_lifecycle_configuration

Terraform detects changes and adds/removes resources when executed apply/plan for next time to changes made in aws_s3_bucket_lifecycle_configuration expiration value. Earlier all the s3 bucket resource were under same block I haven't faced any issue in the deployment. After separation of…

VIEW QUESTION

Amazon web services – Partial credentials found in explicit, missing: aws_access_key_id

I am trying to run the following code snipet (based on this code here): import boto3, os from dotenv import load_dotenv load_dotenv() AWS_ACCESS_KEY=os.getenv('AWS_ACCESS_KEY') AWS_SECRET_KEY=os.getenv('AWS_SECRET_KEY') translate = boto3.client( service_name='translate', region_name='us-east-1', aws_access_key_id=AWS_ACCESS_KEY, aws_secret_access_key=AWS_SECRET_KEY, ) result = translate.translate_text(Text="Hello, World", SourceLanguageCode="en", TargetLanguageCode="de") print('TranslatedText: '…

VIEW QUESTION
Back To Top
Search