Skip to content

Commit

Permalink
Tweak resource names
Browse files Browse the repository at this point in the history
  • Loading branch information
cnunciato committed Oct 18, 2022
1 parent c7fea46 commit 339918c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion container-azure-csharp/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
var cpu = Math.Max(config.GetObject<double>("cpu"), 1.0);
var memory = Math.Max(config.GetObject<double>("memory"), 1.5);

var resourceGroup = new AzureNative.Resources.ResourceGroup("resourceGroup");
var resourceGroup = new AzureNative.Resources.ResourceGroup("resource-group");

var registry = new AzureNative.ContainerRegistry.Registry("registry", new()
{
Expand Down
2 changes: 1 addition & 1 deletion container-azure-python/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
cpu = config.get_float("cpu", 1.0)
memory = config.get_float("memory", 1.5)

resource_group = resources.ResourceGroup('resource_group')
resource_group = resources.ResourceGroup("resource-group")

registry = containerregistry.Registry("registry", containerregistry.RegistryArgs(
resource_group_name=resource_group.name,
Expand Down

0 comments on commit 339918c

Please sign in to comment.