我有以下状态,带有初始vpc模块。我正在尝试将vpc id传递给一个实例模块,以分离出基础架构。 terraform state list
module.my-vpc.aws_default_route_table.clear-default
module.my-vpc.aws_internet_gateway.gw
module.my-vpc.aws_route_table.rt
module.my-vpc.aws_route_table_association.a
module.my-vpc.aws_route_table_associa
我使用两个模块vpc和lb,并将vcp模块中的输出变量传递给lb模块,如下所示。但我得到了以下错误- Error: Unsupported attribute
on main.tf line 35, in module "lb":
35: vpc-id = module.vpc.vpc-id
This value does not have any attributes. 下面是代码- main.tf provider "aws" {
shared_credentials_file = "~/.aws/credentials"
嗨,我在aws cdk上工作。我正在尝试获取已有的非默认vpc。我尝试了下面的选项。
vpc = ec2.Vpc.from_lookup(self, id = "VPC", vpc_id='vpcid', vpc_name='vpc-dev')
这将导致以下错误
[Error at /LocationCdkStack-cdkstack] Request has expired.
[Warning at /LocationCdkStack-cdkstack/TaskDef/mw-service] Proper policies need to be
我试图为一个创建一个云形成模板,其中VPC和与PHZ相关联的区域的列表作为一个参数提供
VPCIds:
Type: List<AWS::EC2::VPC::Id>
Description: The Evertz VPC Id
Regions:
Type: CommaDelimitedList
Description: A list that containing the matching regions for the VPCs given
NumberOfVPC:
Type: Number
我已经设置了指定VPC数量的条件。
假设我有一个名为vpc-1的VPC,它有一个与其相关联的Memorystore (Redis)实例。我的理解是,Redis生活在它自己的VPC中,并且有用来将vpc-1连接到Redis的VPC的VPC对等点。现在,让我们想象一下,我创建了第二个名为vpc-2的VPC,并将其与vpc-1进行对等。我现在创建一个VM,它有一个与vpc-2的网络接口。这个VM现在可以访问附加到vpc-1和vpc-2的VPC资源。但是,由于VPC窥视不是传递性的,所以VM无法访问Redis实例。
我的谜题现在变成了..。连接到vpc-2的VM是否可能访问该vpc-1实例,该VM由VPC监视到具有与其关联的内存( Re
当我执行aws ec2 delete-vpc --vpc-id vpc-0a72e2c7f0fc1234bb --profile me时,会出现以下错误:
An error occurred (DependencyViolation) when calling the DeleteVpc operation: The vpc 'vpc-0a72e2c7f0fc1234bb' has dependencies and cannot be deleted.
所以我用这个脚本:
#!/bin/bash
vpc="vpc-0a72e2c7f0fc1234bb"
a
我正在尝试建立一个示例弹性豆柄应用程序,ALB在公共子网(面向互联网)和ec2实例在私有子网中的地形。如果我将ec2实例放在公共子网中,那么弹性豆茎应用程序就会成功创建,但是在私有子网中,我会得到以下错误。
The EC2 instances failed to communicate with AWS Elastic Beanstalk, either because of configuration problems with the VPC or a failed EC2 instance. Check your VPC configuration and try launching t
据我所知,当我们有一些要初始化的公共数据时,可以将构造函数链接应用于情况。我有3个构造函数,它们接受3种不同类型的参数,并具有一些公共数据。我不确定是否可以进行构造函数链接。
public class RStandart
{
private readonly SqlConnection _objConn;
private readonly RequestData _requestData = new RequestData();
public string CardNo { get; set; }
public string PaymentType { get