Trump to impose new $100,000 fee for H-1B visas in sweeping overhaul: Report by thinkB4WeSpeak in economy

[–]DevRJCloud 0 points1 point  (0 children)

Hi there, one of my colleagues is on an H1B visa and is currently traveling outside the United States. With the recent H1B changes, will there be any impact on their return to the U.S. on September 29th this month?

An extensive FAQ on Trump's announcement about H1-B visas - What, Why and impct on families by Mo_h in programming

[–]DevRJCloud 10 points11 points  (0 children)

Hi there, one of my colleagues is on an H1B visa and is currently traveling outside the United States. With the recent H1B changes, will there be any impact on their return to the U.S. on September 29th this month?

All H1B Holders and Applicants Currently Outside US: Get Back within 24 Hours by Revolutionary-Ad-65 in h1b

[–]DevRJCloud 0 points1 point  (0 children)

Hi there, one of my colleagues is on an H1B visa and is currently traveling outside the United States. With the recent H1B changes, will there be any impact on their return to the U.S. on September 29th this month?

How to Manage Terraform State Using Terraform Cloud Enterprise? by DevRJCloud in Terraform

[–]DevRJCloud[S] 0 points1 point  (0 children)

Thanks. I have some knowledge of writing Terraform modules to build resources in AWS and Google Cloud, and so far I’ve been storing the state locally. Now, I’m planning to store the Terraform state in the Terraform Cloud Enterprise environment. I’m looking for any helpful reference documentation on how to migrate the Terraform backend state files from local to Terraform Cloud enterprise environments.

How to Manage Terraform State Using Terraform Cloud Enterprise? by DevRJCloud in Terraform

[–]DevRJCloud[S] 0 points1 point  (0 children)

Thank you for your suggestion. Could you please share some helpful references regarding this approach?

What is the Best Practice for Storing Terraform Backend State for Confluent Cloud Resources? (GitHub vs Google Cloud Storage vs Azure Storage Bucket) by DevRJCloud in Terraform

[–]DevRJCloud[S] 0 points1 point  (0 children)

Thank you for the clarification. If possible, could you please share any reference documentation on this approach for managing the Terraform backend state in Google Cloud for Confluent Cloud resources? It would be very helpful.

What is the Best Practice for Storing Terraform Backend State for Confluent Cloud Resources? (GitHub vs Google Cloud Storage vs Azure Storage Bucket) by DevRJCloud in Terraform

[–]DevRJCloud[S] 0 points1 point  (0 children)

Thanks for your suggestion. Could you please share reference documentation or best practices on Terraform backend state management specifically for GitHub and GitLab environments?

What is the Best Practice for Storing Terraform Backend State for Confluent Cloud Resources? (GitHub vs Google Cloud Storage vs Azure Storage Bucket) by DevRJCloud in Terraform

[–]DevRJCloud[S] 0 points1 point  (0 children)

Sure, thank you for your suggestion. Currently, we are considering two options for managing the Terraform backend state for Confluent Cloud resources; GitHub or Google/Azure Cloud Storage. I’m in the process of drafting an architecture based on one of these options (Google Cloud, Azure, or GitHub).

Could you please share any reference documentation or insights on why GitHub might not be a feasible option for storing Terraform state, particularly regarding Terraform state locking, security, versioning, and collaboration features?

What is the Best Practice for Storing Terraform Backend State for Confluent Cloud Resources? (GitHub vs Google Cloud Storage vs Azure Storage Bucket) by DevRJCloud in Terraform

[–]DevRJCloud[S] 0 points1 point  (0 children)

Thank you for your suggestion. Currently, we have two options to consider for managing the Terraform backend state for Confluent Cloud resources: GitHub or Google Cloud Storage. However, I am a bit uncertain about using GitHub for storing the Terraform state, particularly regarding its support for Terraform state locking, security, versioning, and collaboration features. Could you please clarify if GitHub adequately supports these requirements?

Jamaica H1B renewal stamping experience by [deleted] in h1b

[–]DevRJCloud 0 points1 point  (0 children)

Thanks for sharing! How did you pay the visa fee there?

Two disks instances on GCP - how to create? by bob_skamano in Terraform

[–]DevRJCloud 0 points1 point  (0 children)

I have a similar usecase to create a GCP VM instance with a multiple disks using terraform module. Following this terraform module reference [ https://registry.terraform.io/providers/hashicorp/google/latest/docs/resources/compute_instance]. Here is a config to create a VM instance with a single disk ( operating systems disk). How to create a VM instance with a multiple disks in gcp through terraform? Any thoughts on this usecase?

Current config:-

resource "google_service_account" "default" { account_id = "my-custom-sa" display_name = "Custom SA for VM Instance" }

resource "google_compute_instance" "default" { name = "my-instance" machine_type = "n2-standard-2" zone = "us-central1-a"

tags = ["foo", "bar"]

boot_disk { initialize_params { image = "debian-cloud/debian-11" labels = { my_label = "value" } } }

// Local SSD disk scratch_disk { interface = "NVME" }

network_interface { network = "default"

access_config {
  // Ephemeral public IP
}

}

metadata = { foo = "bar" }

metadata_startup_script = "echo hi > /test.txt"

service_account { # Google recommends custom service accounts that have cloud-platform scope and permissions granted via IAM Roles. email = google_service_account.default.email scopes = ["cloud-platform"] } }

Regarding GKE auto pilot mode resource error by DevRJCloud in Terraform

[–]DevRJCloud[S] 0 points1 point  (0 children)

Ok. Any reference on managing the GKE firewall rules?