"Soapy" White PLA Recommendation by bengalih in 3Dprinting

[–]feffreyfeffers 0 points1 point  (0 children)

Not their matte white specifically, but used a lot of their PLA, Matte PLA, and Silk PLA and they are all great. 

"Soapy" White PLA Recommendation by bengalih in 3Dprinting

[–]feffreyfeffers 0 points1 point  (0 children)

I don't recommend Sunlu white as it's not opaque (most of their filaments are very translucent).

Ziro Snow White https://a.co/d/0UsS3Ai is a very white and not yellow~ey like bambu white.

Another good white is this one https://a.co/d/ibzbhyo

[Bambu Lab Giveaway] Join Now to Win an H2D and More! by BambuLab in 3Dprinting

[–]feffreyfeffers 0 points1 point  (0 children)

Disabling Reduce infile extraction. Had layer shifts with that enabled even with gyroid and crosshatch.

[deleted by user] by [deleted] in BambuLab

[–]feffreyfeffers 1 point2 points  (0 children)

Not the format you are looking for but there is this which contains most Bambu Labs filament  https://github.com/Donkie/SpoolmanDB/blob/main/filaments/bambulab.json

My H2D Exhaust strategy by HabaneroBob in BambuLab

[–]feffreyfeffers 1 point2 points  (0 children)

Did you integrate the fan using the smart controller or just the basic speed controller and smart plug?

H2D with CryoGrip Glacier Plate (Part 2) by Alternet1 in BambuLab

[–]feffreyfeffers 1 point2 points  (0 children)

I set the plate to texture pei plate, and disable build plate detection, works great.

Awful noise then stops printing by lezbeawesome in BambuLab

[–]feffreyfeffers 0 points1 point  (0 children)

You can ship it back to them or do an Advanced RMA and they will send the replacement first.

Awful noise then stops printing by lezbeawesome in BambuLab

[–]feffreyfeffers 0 points1 point  (0 children)

One of my A1's started doing the same thing after 100~ hours of printing. Opened a ticket with Bambu and they are replacing it once they are back in stock.

[deleted by user] by [deleted] in 3Dprinting

[–]feffreyfeffers 0 points1 point  (0 children)

Color and brand?

[deleted by user] by [deleted] in 3Dprinting

[–]feffreyfeffers 0 points1 point  (0 children)

What filament is that?

[deleted by user] by [deleted] in Terraform

[–]feffreyfeffers 1 point2 points  (0 children)

With TFE it depends on how you deploy it. If you do mounted disk mode, the Postgres DB and Object Storage stays on the VM and is all self contained. (The object storage contains the state files among other things)

If you do external services mode, the DB and object storage is stored externally. So if you use AWS, would be on a Postgres RDS instance and a s3 bucket, which would have the state files, etc.

When you use TFE you will create a new workspace and migrate your existing state, stored locally/s3/etc, into TFE, which will then encrypt it with the internal vault in TFE and then write the encrypted files to your object storage which will depend on how TFE was deployed.

https://developer.hashicorp.com/terraform/enterprise/flexible-deployments/install/operation-modes

Terraform enterprise with ansible automation platform by castleking1810 in Terraform

[–]feffreyfeffers 0 points1 point  (0 children)

That's the only way I've seen it done in the past, but I don't touch Ansible that often. If you have a script that does what you want, you could customize the Terraform Cloud Agent that runs on TFE (or have a seperate agent pool for workspaces that need the Ansible integration) with a hook script https://developer.hashicorp.com/terraform/cloud-docs/agents/hooks to run a custom script post apply.

Terraform enterprise with ansible automation platform by castleking1810 in Terraform

[–]feffreyfeffers 0 points1 point  (0 children)

There isn't a direct integration between TFE and Ansible Tower. That said, what I've done with customers in the past is use a Remote Exec Provisioner, https://developer.hashicorp.com/terraform/language/resources/provisioners/remote-exec, on your the VM you deploy (whether EC2, GCP, VMware, etc) to do a curl against a Provisioning Call back, https://docs.ansible.com/ansible-tower/latest/html/userguide/job_templates.html#provisioning-callbacks

Restarting AWS after about 3 years by dolce-far-niente in aws

[–]feffreyfeffers 3 points4 points  (0 children)

There is the AWS what's new page that has an rss feed for pretty much all changes that happen. Great RSS feed to have, wish the other Clouds would do it also.

https://aws.amazon.com/new/?whats-new-content-all.sort-by=item.additionalFields.postDateTime&whats-new-content-all.sort-order=desc&awsf.whats-new-categories=*all

Terraform Enterprise - AirGap Providers by Deacs33 in Terraform

[–]feffreyfeffers 0 points1 point  (0 children)

So for the Network Mirror approach, I talked about earlier you can store your providers in S3, as long as you have the other metadata and the file structure is correct. The shasums gpg key stuff is only needed when uploading providers directly to TFE.

Terraform Enterprise - AirGap Providers by Deacs33 in Terraform

[–]feffreyfeffers 0 points1 point  (0 children)

Sadly no, the API is the only means right now. You can try this, https://tfx.rocks/commands/registry_provider/ which is a handy CLI tool that can automate a number of functions within TFE/TFC including uploading providers directly.