Describe the bug
This cdk code:
this.cluster = new ecs.Cluster(this, "MyCluster", {
clusterName: cdk.PhysicalName.GENERATE_IF_NEEDED,
vpc: this.vpc,
defaultCloudMapNamespace: {
name: "passmate.private",
useForServiceConnect: true,
type: cloudmap.NamespaceType.DNS_PRIVATE,
vpc: this.vpc
},
});
... and in a different stack:
keycloakContainer.addPortMappings({
name: "keycloak_http",
containerPort: this.webPort});
...
this.service = new ecs.FargateService(this, 'Service', {
cluster: props.cluster,
...
serviceConnectConfiguration: {
services: [{
portMappingName: "keycloak_http",
dnsName: "keycloak",
port: _keycloakPublicPort,
}]
}
});
generates two namespaces in CloudMap:
Domain name | Description | Instance discovery | Namespace ID
passmate.private | - | API calls and DNS queries in VPCs | ns-jfyvbvl33oocytvv
passmate.private | - | API calls | ns-pge2n6bdb7z4k72x
The "DNS Queries" contains no services, the second namespace (API calls only) contains the keycloak service defined above.
Expected Behavior
I expected a private DNS entry to be created for the keycloak service, with the DNS name keycloak.passmate.private.
Current Behavior
No DNS record gets created.
The first namespace ("API calls and DNS queries in VPCs") has the expected aws:cloudformation:stack-id, aws:cloudformation:stack-name and aws:cloudformation:logical-id tags.
The second namespace ("API calls" only) which contains the service has a single "AmazonECSManaged" tag.
Reproduction Steps
Create a simple stack with cluster with a default CloudMap namespace & a ServiceConnect-enabled service as described above.
Possible Solution
No response
Additional Information/Context
No response
CDK CLI Version
2.79.1 (build 2e7f8b7)
Framework Version
"version": "2.79.0",
Node.js Version
v18.3.0
OS
macOS 12.6
Language
Typescript
Language Version
5.0.4
Other information
No response
Describe the bug
This cdk code:
... and in a different stack:
generates two namespaces in CloudMap:
The "DNS Queries" contains no services, the second namespace (API calls only) contains the keycloak service defined above.
Expected Behavior
I expected a private DNS entry to be created for the keycloak service, with the DNS name keycloak.passmate.private.
Current Behavior
No DNS record gets created.
The first namespace ("API calls and DNS queries in VPCs") has the expected aws:cloudformation:stack-id, aws:cloudformation:stack-name and aws:cloudformation:logical-id tags.
The second namespace ("API calls" only) which contains the service has a single "AmazonECSManaged" tag.
Reproduction Steps
Create a simple stack with cluster with a default CloudMap namespace & a ServiceConnect-enabled service as described above.
Possible Solution
No response
Additional Information/Context
No response
CDK CLI Version
2.79.1 (build 2e7f8b7)
Framework Version
"version": "2.79.0",
Node.js Version
v18.3.0
OS
macOS 12.6
Language
Typescript
Language Version
5.0.4
Other information
No response