<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Customer-managed VPC with empty default security group in Data Engineering</title>
    <link>https://community.databricks.com/t5/data-engineering/customer-managed-vpc-with-empty-default-security-group/m-p/10395#M5582</link>
    <description>&lt;P&gt;Yes, possible. Thanks for your confirmation. &lt;/P&gt;</description>
    <pubDate>Mon, 13 Feb 2023 05:38:19 GMT</pubDate>
    <dc:creator>Debayan</dc:creator>
    <dc:date>2023-02-13T05:38:19Z</dc:date>
    <item>
      <title>Customer-managed VPC with empty default security group</title>
      <link>https://community.databricks.com/t5/data-engineering/customer-managed-vpc-with-empty-default-security-group/m-p/10390#M5577</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I use self managed VPC. when i use  security group the jobs clusters are being created.&lt;/P&gt;&lt;P&gt;if i make the default security group empty and create customized security group (required by soc2 to have empty default), with same definition of ingress (allow all port and protocol within the security group) and egress (allow all traffic to 0.0.0.0).&lt;/P&gt;&lt;P&gt;using this terraform: &lt;/P&gt;&lt;P&gt;resource "aws_security_group" "databricks_infrastructure_sg" {&lt;/P&gt;&lt;P&gt;  name        = "databricks_infra_sg"&lt;/P&gt;&lt;P&gt;  description = "internal ingress"&lt;/P&gt;&lt;P&gt;  vpc_id      = module.vpc.vpc_id &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ingress {&lt;/P&gt;&lt;P&gt;    description      = "Allow all internal TCP and UDP"&lt;/P&gt;&lt;P&gt;    from_port        = 0&lt;/P&gt;&lt;P&gt;    to_port          = 65535&lt;/P&gt;&lt;P&gt;    protocol         = "All"&lt;/P&gt;&lt;P&gt;    cidr_blocks      = [module.vpc.vpc_cidr_block]&lt;/P&gt;&lt;P&gt;    self        = true&lt;/P&gt;&lt;P&gt;  }&lt;/P&gt;&lt;P&gt;  egress {&lt;/P&gt;&lt;P&gt;    from_port        = 0&lt;/P&gt;&lt;P&gt;    to_port          = 65535&lt;/P&gt;&lt;P&gt;    protocol         = "All"&lt;/P&gt;&lt;P&gt;    cidr_blocks      = ["0.0.0.0/0"]&lt;/P&gt;&lt;P&gt;  }&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i get the following error on the job tasks:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;Unexpected failure while waiting for the cluster Some((01xxxxxx) )to be readySome(: Cluster 0131-154653-qtv0d3wx is in unexpected state Terminated: BOOTSTRAP_TIMEOUT(SUCCESS)databricks_error_message:[id: InstanceId(i-07xxxx501), status: INSTANCE_INITIALIZING, workerEnvId:WorkerEnvId(workerenv-20xxxxxx2-xxxx-***-4292-xx-xxxx), lastStatusChangeTime: 1675180073933, groupIdOpt Some(0),requestIdOpt Some(xxxxxxxxx),version 1] with threshold 700 seconds timed out after 700726 milliseconds. Please check network connectivity from the data plane to the control plane.,instance_id:i-xxxxxxxx.)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I couldnt see any documentation that states something about it.&lt;/P&gt;&lt;P&gt;any idea?&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Amit&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 31 Jan 2023 18:12:15 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/customer-managed-vpc-with-empty-default-security-group/m-p/10390#M5577</guid>
      <dc:creator>amitca71</dc:creator>
      <dc:date>2023-01-31T18:12:15Z</dc:date>
    </item>
    <item>
      <title>Re: Customer-managed VPC with empty default security group</title>
      <link>https://community.databricks.com/t5/data-engineering/customer-managed-vpc-with-empty-default-security-group/m-p/10392#M5579</link>
      <description>&lt;P&gt;hi @Debayan Mukherjee​&amp;nbsp;i was adding the security group to mws. now i get different error:&lt;/P&gt;&lt;P&gt;{&lt;/P&gt;&lt;P&gt;  "reason": {&lt;/P&gt;&lt;P&gt;    "code": "SECURITY_DAEMON_REGISTRATION_EXCEPTION",&lt;/P&gt;&lt;P&gt;    "type": "CLIENT_ERROR",&lt;/P&gt;&lt;P&gt;    "parameters": {&lt;/P&gt;&lt;P&gt;      "instance_id": "i-04ef78a9000a86819",&lt;/P&gt;&lt;P&gt;      "databricks_error_message": "Failed to set up the Spark container due to an error when registering the container to security daemon."&lt;/P&gt;&lt;P&gt;    }&lt;/P&gt;&lt;P&gt;  }&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;thanks,&lt;/P&gt;&lt;P&gt;Amit&lt;/P&gt;</description>
      <pubDate>Wed, 01 Feb 2023 09:48:13 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/customer-managed-vpc-with-empty-default-security-group/m-p/10392#M5579</guid>
      <dc:creator>amitca71</dc:creator>
      <dc:date>2023-02-01T09:48:13Z</dc:date>
    </item>
    <item>
      <title>Re: Customer-managed VPC with empty default security group</title>
      <link>https://community.databricks.com/t5/data-engineering/customer-managed-vpc-with-empty-default-security-group/m-p/10394#M5581</link>
      <description>&lt;P&gt;It started working.... I guess there was temporary issue within aws?? &lt;/P&gt;&lt;P&gt;Thanks @Debayan Mukherjee​&amp;nbsp;​&lt;/P&gt;</description>
      <pubDate>Sat, 11 Feb 2023 10:39:15 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/customer-managed-vpc-with-empty-default-security-group/m-p/10394#M5581</guid>
      <dc:creator>amitca71</dc:creator>
      <dc:date>2023-02-11T10:39:15Z</dc:date>
    </item>
    <item>
      <title>Re: Customer-managed VPC with empty default security group</title>
      <link>https://community.databricks.com/t5/data-engineering/customer-managed-vpc-with-empty-default-security-group/m-p/10396#M5583</link>
      <description>&lt;P&gt;Hi @Amit Cahanovich​,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just a friendly follow-up. Did any of the responses help you to resolve your question? if it did, please mark it as best. Otherwise, please let us know if you still need help.&lt;/P&gt;</description>
      <pubDate>Thu, 23 Feb 2023 22:31:29 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/customer-managed-vpc-with-empty-default-security-group/m-p/10396#M5583</guid>
      <dc:creator>jose_gonzalez</dc:creator>
      <dc:date>2023-02-23T22:31:29Z</dc:date>
    </item>
    <item>
      <title>Re: Customer-managed VPC with empty default security group</title>
      <link>https://community.databricks.com/t5/data-engineering/customer-managed-vpc-with-empty-default-security-group/m-p/10391#M5578</link>
      <description>&lt;P&gt;Hi, this is a typical network configuration error and the custom security group has to be reverified with the rules on place, please refer to this and let us know if this helps. &lt;/P&gt;&lt;P&gt;&lt;A href="https://community.databricks.com/s/question/0D53f00001fR8LGCA0/problem-with-spinning-up-a-cluster-on-a-new-workspace" alt="https://community.databricks.com/s/question/0D53f00001fR8LGCA0/problem-with-spinning-up-a-cluster-on-a-new-workspace" target="_blank"&gt;https://community.databricks.com/s/question/0D53f00001fR8LGCA0/problem-with-spinning-up-a-cluster-on-a-new-workspace&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 01 Feb 2023 07:18:17 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/customer-managed-vpc-with-empty-default-security-group/m-p/10391#M5578</guid>
      <dc:creator>Debayan</dc:creator>
      <dc:date>2023-02-01T07:18:17Z</dc:date>
    </item>
    <item>
      <title>Re: Customer-managed VPC with empty default security group</title>
      <link>https://community.databricks.com/t5/data-engineering/customer-managed-vpc-with-empty-default-security-group/m-p/10393#M5580</link>
      <description>&lt;P&gt;Hi Amit, Please confirm if you have checked the SG rules and configuration. &lt;/P&gt;</description>
      <pubDate>Thu, 02 Feb 2023 05:48:31 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/customer-managed-vpc-with-empty-default-security-group/m-p/10393#M5580</guid>
      <dc:creator>Debayan</dc:creator>
      <dc:date>2023-02-02T05:48:31Z</dc:date>
    </item>
    <item>
      <title>Re: Customer-managed VPC with empty default security group</title>
      <link>https://community.databricks.com/t5/data-engineering/customer-managed-vpc-with-empty-default-security-group/m-p/10395#M5582</link>
      <description>&lt;P&gt;Yes, possible. Thanks for your confirmation. &lt;/P&gt;</description>
      <pubDate>Mon, 13 Feb 2023 05:38:19 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/customer-managed-vpc-with-empty-default-security-group/m-p/10395#M5582</guid>
      <dc:creator>Debayan</dc:creator>
      <dc:date>2023-02-13T05:38:19Z</dc:date>
    </item>
  </channel>
</rss>

